src/log/slog/multi_handler.go | 4 ++-- diff --git a/src/log/slog/multi_handler.go b/src/log/slog/multi_handler.go index 4cc802b29ba65350c15a1f7126972f84c40e1353..1ee798db37b36ecbe323b2a393e6fbaa53a77589 100644 --- a/src/log/slog/multi_handler.go +++ b/src/log/slog/multi_handler.go @@ -17,8 +17,8 @@ return &MultiHandler{multi: h} } // MultiHandler is a [Handler] that invokes all the given Handlers. -// Its Enable method reports whether any of the handlers' Enabled methods return true. -// Its Handle, WithAttr and WithGroup methods call the corresponding method on each of the enabled handlers. +// Its Enabled method reports whether any of the handlers' Enabled methods return true. +// Its Handle, WithAttrs and WithGroup methods call the corresponding method on each of the enabled handlers. type MultiHandler struct { multi []Handler }