From 565da6936841963d29e9126331151413f680a38c Mon Sep 17 00:00:00 2001 From: rafaelw Date: Tue, 7 Jan 2014 17:16:10 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b7cb710..88c5b01 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ observer.open(function(newValue, oldValue) { PathObserver will report a change whenever the value obtained by the corresponding path expression (e.g. `obj.foo.bar`) would return a different value. -PathObserver also exposes a `setValue` method which attempts to update the underlying value. Setting the value does not affect notification state (in other words, a caller sets the value but doesn't not `discardChanges`, the `changeFn` will be notified of the change). +PathObserver also exposes a `setValue` method which attempts to update the underlying value. Setting the value does not affect notification state (in other words, a caller sets the value but does not `discardChanges`, the `changeFn` will be notified of the change). ```JavaScript observer.setValue('boo');