diff --git a/README.md b/README.md index ea5e65f..9ae0e81 100644 --- a/README.md +++ b/README.md @@ -270,7 +270,7 @@ The correct way to apply the function grouping style when chaining is to use it ```coffeescript ($ '#selektor').addClass('klass').hide() # Yes -($ '#selektor').(addClass 'klass').hide() # No +(($ '#selektor').addClass 'klass').hide() # No ``` This guide does not prescribe the use of the function grouping style or the alternative. However, **if the function grouping style is adopted for a particular project, be consistent with its usage.**