fix words misspell

Signed-off-by: Michael Wan <zirenwan@gmail.com>
This commit is contained in:
Michael Wan
2018-04-22 04:27:17 -04:00
parent 3a6825e1a0
commit 7fd6d5e2be
14 changed files with 18 additions and 18 deletions

View File

@@ -92,7 +92,7 @@ var Always FilterFunc = func(adaptor Adaptor) bool {
return true
}
// Any allows multiple filters to be matched aginst the object
// Any allows multiple filters to be matched against the object
type Any []Filter
// Match returns true if any of the provided filters are true
@@ -106,7 +106,7 @@ func (m Any) Match(adaptor Adaptor) bool {
return false
}
// All allows multiple filters to be matched aginst the object
// All allows multiple filters to be matched against the object
type All []Filter
// Match only returns true if all filters match the object