Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
fix(doc): queryParameters is not a function (#377)
Browse files Browse the repository at this point in the history
`queryParameters` actually has a setter that merges assigned params to the full params list
  • Loading branch information
olance authored and Haroenv committed Dec 29, 2017
1 parent 18790ef commit cd87cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/getting-started/search-store.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ store.stop();

store.indexName = 'new_index';
store.query = '';
store.queryParameters({'distinct': true});
store.queryParameters = { distinct: true };

store.start();
store.refresh();
Expand Down

0 comments on commit cd87cad

Please sign in to comment.