diff --git a/packages/eslint-plugin/docs/rules/no-parameter-properties.md b/packages/eslint-plugin/docs/rules/no-parameter-properties.md index 86ebed8bc7fd..bb2fd2691967 100644 --- a/packages/eslint-plugin/docs/rules/no-parameter-properties.md +++ b/packages/eslint-plugin/docs/rules/no-parameter-properties.md @@ -13,7 +13,7 @@ declare all properties in the class. This rule, in its default state, does not require any argument and would completely disallow the use of parameter properties. If you would like to allow certain types of parameter properties then you may pass an object with the following options: -- `allows`, an array containing one or more fo the allowed modifiers. Valid values are: +- `allows`, an array containing one or more of the allowed modifiers. Valid values are: - `readonly`, allows **readonly** parameter properties. - `private`, allows **private** parameter properties. - `protected`, allows **protected** parameter properties.