Skip to content

Commit 62c9f12

Browse files
Merge pull request #341 from CarlQLange/patch-1
Fix a tiny typo in the readme (reacitve -> reactive)
2 parents 4cb7561 + 242baf1 commit 62c9f12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-meteor-data/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Arguments:
4141

4242
The basic way to use `useTracker` is to simply pass it a reactive function, with no further fuss. This is the preferred configuration in many cases.
4343

44-
#### `useTracker(reacitveFn, deps)` hook with deps
44+
#### `useTracker(reactiveFn, deps)` hook with deps
4545

4646
You can pass an optional deps array as a second value. When provided, the computation will be retained, and reactive updates after the first run will run asynchronously from the react render execution frame. This array typically includes all variables from the outer scope "captured" in the closure passed as the 1st argument. For example, the value of a prop used in a subscription or a minimongo query; see example below.
4747

0 commit comments

Comments
 (0)