diff --git a/docs/content/basic/authenticating-oauth.md b/docs/content/basic/authenticating-oauth.md index 350351220..51c990a14 100644 --- a/docs/content/basic/authenticating-oauth.md +++ b/docs/content/basic/authenticating-oauth.md @@ -412,12 +412,12 @@ For quick testing purposes, the following might be interesting: ```javascript const database = { store: {}, - async get(key) { - return this.store[key]; - }, async delete(key) { delete this.store[key]; }, + async get(key) { + return this.store[key]; + }, async set(key, value) { this.store[key] = value; },