@@ -177,14 +177,14 @@ The link will include a signature _only if the general resource access is set to
177177
178178:::
179179
180- ##### Dataset items:
180+ ##### Dataset items
181181
1821821 . Click the ** Export** button.
1831832 . In the modal that appears, click ** Copy shareable link** .
184184
185185![ Generating shareable link for a restricted storage resource] ( ./images/general-resouce-access/copy-shareable-link.png )
186186
187- ##### Key-value store records:
187+ ##### Key-value store records
188188
1891891 . Open a key-value store.
1901902 . Navigate to the record you want to share.
@@ -196,7 +196,7 @@ The link will include a signature _only if the general resource access is set to
196196
197197You can generate pre-signed URLs programmatically for datasets and key-value stores:
198198
199- ##### Dataset items:
199+ ##### Dataset items
200200
201201``` js
202202import { ApifyClient } from " apify-client" ;
@@ -210,7 +210,7 @@ const itemsUrl = await datasetClient.createItemsPublicUrl({ expiresInSecs: 7 * 2
210210const permanentItemsUrl = await datasetClient .createItemsPublicUrl ();
211211```
212212
213- ##### Key-value store list of keys:
213+ ##### Key-value store list of keys
214214
215215``` js
216216const storeClient = client .keyValueStore (' my-store-id' );
@@ -222,7 +222,7 @@ const keysPublicUrl = await storeClient.createKeysPublicUrl({ expiresInSecs: 24
222222const permanentKeysPublicUrl = await storeClient .createKeysPublicUrl ();
223223```
224224
225- ##### Key-value store record:
225+ ##### Key-value store record
226226
227227``` js
228228// Get permanent URL for a single record
0 commit comments