Skip to content

Commit 4047c7b

Browse files
vcarvajal-sigscikpflemingdbarshop
authored
fix: config store documentation fix (#1160)
Co-authored-by: Kevin P. Fleming <[email protected]> Co-authored-by: Deanna Barshop <[email protected]>
1 parent 981a54e commit 4047c7b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

documentation/docs/config-store/ConfigStore/ConfigStore.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {Fiddle} from '@site/src/components/fiddle';
88

99
# `ConfigStore()`
1010

11-
The **`ConfigStore` constructor** lets you access a specific [Fastly Edge Dictionary](https://docs.fastly.com/en/guides/about-edge-dictionaries).
11+
The **`ConfigStore` constructor** lets you access a specific [Fastly Config Store](https://www.fastly.com/documentation/reference/api/services/resources/config-store/).
1212

1313
> **Note**: Can only be used when processing requests, not during build-time initialization.
1414
@@ -23,7 +23,7 @@ new ConfigStore(name);
2323
### Parameters
2424

2525
- `name` _: string_
26-
- The name of the [Fastly Edge Dictionary](https://docs.fastly.com/en/guides/about-edge-dictionaries) that this `ConfigStore` instance should provide access to.
26+
- Defines a config store instance using the resource link name.
2727

2828
### Return value
2929

@@ -40,7 +40,7 @@ A new `ConfigStore` object.
4040

4141
## Examples
4242

43-
In this example we have an Edge Dictionary named "animals" and we return the "cat" entry as the response body to the client.
43+
In this example we have a resource link named "animals" (which is linked to a config store) and we return the "cat" entry as the response body to the client.
4444

4545
<Fiddle config={{
4646
"type": "javascript",
@@ -93,4 +93,4 @@ async function app (event) {
9393
addEventListener("fetch", event => event.respondWith(app(event)));
9494
```
9595

96-
</Fiddle>
96+
</Fiddle>

documentation/docs/dictionary/Dictionary/Dictionary.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {Fiddle} from '@site/src/components/fiddle';
1010

1111
:::info
1212

13-
This Class is deprecated, it has been renamed to [`ConfigStore`](../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
13+
This Class is deprecated
1414

1515
:::
1616

documentation/docs/globals/fetch.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Dynamic backends are a compute feature that allow services to define backends fo
4141

4242
When dynamic backends are enabled at the service level, the explicit `backend` option is no longer required for `fetch()` requests, and will instead be automatically created.
4343

44-
In addition, custom backend confiuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
44+
In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
4545

4646
## Syntax
4747

documentation/docs/kv-store/KVStore/KVStore.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ new KVStore(name)
2323
### Parameters
2424

2525
- `name` _: string_
26-
- The Fastly KV store which should be associated with this KVStore instance
26+
- Define a KV store instance using the resource link name.
2727

2828
### Return value
2929

documentation/docs/secret-store/SecretStore/SecretStore.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ new SecretStore(name)
2323
### Parameters
2424

2525
- `name` _: string_
26-
- The Fastly Secret Store which should be associated with this SecretStore instance
26+
- Define a Secret Store instance using the resource link name.
2727

2828
### Return value
2929

0 commit comments

Comments
 (0)