aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMLogger.h
diff options
context:
space:
mode:
authorGravatar Thomas Van Lenten <thomasvl@google.com>2015-09-08 11:36:50 -0400
committerGravatar Thomas Van Lenten <thomasvl@google.com>2015-09-08 11:36:50 -0400
commitd8ee553254a4cba7b3311bdc16d1185486b0efd2 (patch)
tree2e18e0c5fd1cf61ad5142c88fe23a1060de81896 /Foundation/GTMLogger.h
parent3eb082def5c70d6566eb32cc9eea66aaf4832407 (diff)
Fix up comments on filter
Diffstat (limited to 'Foundation/GTMLogger.h')
-rw-r--r--Foundation/GTMLogger.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Foundation/GTMLogger.h b/Foundation/GTMLogger.h
index e71d56d..a776922 100644
--- a/Foundation/GTMLogger.h
+++ b/Foundation/GTMLogger.h
@@ -442,9 +442,9 @@ typedef enum {
// Log Filters
//
-// Protocol to be imlemented by a GTMLogFilter instance.
+// Protocol to be implemented by a GTMLogFilter instance.
@protocol GTMLogFilter <NSObject>
-// Returns YES if |msg| at |level| should be filtered out; NO otherwise.
+// Returns YES if |msg| at |level| should be logged; NO otherwise.
- (BOOL)filterAllowsMessage:(NSString *)msg level:(GTMLoggerLevel)level;
@end // GTMLogFilter