Skip to content

Commit

Permalink
Fixed typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jancurn committed Mar 4, 2020
1 parent 53ff5ee commit 115586c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/key_value_store.js
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ export const openKeyValueStore = (storeIdOrName, options = {}) => {
* const value = await store.getValue('my-key');
* ```
*
* To store the value to the default-key value store, you can use the {@link Apify#setValue} function.
* To store the value to the default key-value store, you can use the {@link Apify#setValue} function.
*
* For more information, see {@link Apify#openKeyValueStore}
* and {@link KeyValueStore#getValue}.
Expand Down Expand Up @@ -660,7 +660,7 @@ export const getValue = async (key) => {
* await store.setValue('OUTPUT', { foo: "bar" });
* ```
*
* To get a value from the default-key value store, you can use the {@link Apify#getValue} function.
* To get a value from the default key-value store, you can use the {@link Apify#getValue} function.
*
* For more information, see {@link Apify#openKeyValueStore}
* and {@link KeyValueStore#getValue}.
Expand Down

0 comments on commit 115586c

Please sign in to comment.