diff --git a/src/v2/guide/syntax.md b/src/v2/guide/syntax.md index e555533b4e..508f2bce2f 100644 --- a/src/v2/guide/syntax.md +++ b/src/v2/guide/syntax.md @@ -153,7 +153,7 @@ Filters can be chained: {{ message | filterA | filterB }} ``` -In this case, `filterA`, defined with a single argument, will recieve the value of `message`, and then the `filterB` function will be called with the result of `filterA` passed into `filterB`'s single argument. +In this case, `filterA`, defined with a single argument, will receive the value of `message`, and then the `filterB` function will be called with the result of `filterA` passed into `filterB`'s single argument. Filters are JavaScript functions, therefore they can take arguments: