diff --git a/README.md b/README.md index b70e11a..1288f1b 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ configuration. In addition to real-time updates, Sync also provides: - Realtime removal of partials from the DOM when the sync'd model is destroyed in the controller via `sync_destroy(@user)` - - Realtime appending of newly created model's on scoped channels + - Realtime appending of newly created models on scoped channels - JavaScript/CoffeeScript hooks to override and extend element updates/appends/removes for partials - Support for [Faye](http://faye.jcoglan.com/) and [Pusher](http://pusher.com) @@ -245,7 +245,7 @@ sync_scope :completed_by_user, ->(user) { completed.by_user(current_user) } #### Things to keep in mind when using `sync_scope` -Please keep in mind that the more sync scopes you set up the more sync messages will be send over your pubsub adapter. So be sure to keep the number scopes small and remove scopes you are not using. +Please keep in mind that the more sync scopes you set up the more sync messages will be sent over your pubsub adapter. So be sure to keep the number of scopes small and remove scopes you are not using. #### Automatic updating of parent associations