diff --git a/lib/fluent/plugin/filter_grep.rb b/lib/fluent/plugin/filter_grep.rb index f590550b38..e2ccc12b7a 100644 --- a/lib/fluent/plugin/filter_grep.rb +++ b/lib/fluent/plugin/filter_grep.rb @@ -110,7 +110,7 @@ def configure(conf) end if @regexps.size > 1 - log.info "Top level multiple is intepreted as 'and' condition" + log.info "Top level multiple is interpreted as 'and' condition" end @regexps.each do |e| raise Fluent::ConfigError, "Duplicate key: #{e.key}" if regexp_and_conditions.key?(e.key) @@ -118,7 +118,7 @@ def configure(conf) end if @excludes.size > 1 - log.info "Top level multiple is intepreted as 'or' condition" + log.info "Top level multiple is interpreted as 'or' condition" end @excludes.each do |e| raise Fluent::ConfigError, "Duplicate key: #{e.key}" if exclude_or_conditions.key?(e.key)