Skip to content

Commit

Permalink
Fixed typos in docstring (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
GHTaarn authored Dec 7, 2024
1 parent 414e0c8 commit 53c14e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CompositionalLoggers/minlevelfiltered.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""
MinLevelLogger(logger, min_enabled_level)
Wraps `logger` in an filter that runs before the log message is created.
Wraps `logger` in a filter that runs before the log message is created.
In many ways this is just a specialised [`EarlyFilteredLogger`](@ref)
that only checks the level.
This filter only allowed messages on or above the `min_enabled_level` to pass.
This filter only allows messages on or above the `min_enabled_level` to pass.
"""
struct MinLevelLogger{T <: AbstractLogger, L} <: AbstractLogger
logger::T
Expand Down

0 comments on commit 53c14e0

Please sign in to comment.