From 46bef4412714e5f7cbc5db3cb0260161d29311e7 Mon Sep 17 00:00:00 2001 From: Jason Strutz Date: Wed, 6 May 2015 12:09:47 -0700 Subject: [PATCH] Tiny correction to documentation for `observe` --- docs/api/Mixin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/Mixin.md b/docs/api/Mixin.md index b7c3047..a9c4bdf 100644 --- a/docs/api/Mixin.md +++ b/docs/api/Mixin.md @@ -9,7 +9,7 @@ At mount time, the initial `props` and `state` are passed as function parameters Each successive time, the upcoming `props` and `state` are passed as parameters. This is because the method is called from `componentWillUpdate`. This method should return an object of key/value pairs, where each key denotes -the name of a subscription, and each key is a Parse Query or +the name of a subscription, and each value is a Parse Query or [Local Subscription](/docs/api/LocalSubscriptions.md). Additionally, it adds the following methods to the component: @@ -27,4 +27,4 @@ Forces a query to fetch new results. If `queryNames` is not provided, it will check the status of every query attached to this object. - `queryNames` (optional): A query name, or array of query names. The queries -with those names will be refreshed. \ No newline at end of file +with those names will be refreshed.