From f36afa7b00132c254af5bb06d7835ca1729e6656 Mon Sep 17 00:00:00 2001 From: lpmi-13 Date: Sun, 5 Feb 2017 11:54:51 +0000 Subject: [PATCH] fix typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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