Skip to content

Commit c11ac18

Browse files
committed
Re-word the subscription notification readme bits.
1 parent 52921ae commit c11ac18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ users.subscribe(new Action1<Query>() {
2929
});
3030
```
3131

32-
Unlike a traditional `rawQuery`, as long as you remain subscribed to the observable updates to the
33-
specified table(s) will trigger another query. This means that when you insert, update, or delete
34-
data any subscribed queries will update instantly.
32+
Unlike a traditional `rawQuery`, updates to the specified table(s) will trigger additional
33+
notifications for as long as you remain subscribed to the observable. This means that when you
34+
insert, update, or delete data, any subscribed queries will update with the new data instantly.
3535

3636
```java
3737
final AtomicInteger queries = new AtomicInteger();

0 commit comments

Comments
 (0)