Skip to content

Commit c3ef06a

Browse files
authored
fix typo in changelog for 0.5.0 example code
1 parent abcb656 commit c3ef06a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/js-compute/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async function app(event) {
2020
// Retrieve the contents of the 'hello' key
2121
// Note: Object-stores are eventually consistent, this means that the updated contents associated may not be available to read from all
2222
// Fastly edge locations immediately and some edge locations may continue returning the previous contents associated with the key.
23-
const hello = await store.lookup('hello')
23+
const hello = await store.get('hello')
2424

2525
// Read the contents of the `hello` key into a string
2626
const hellotext = await hello.text()

0 commit comments

Comments
 (0)