From c06137fc8d4eb0a9a9359bd63178bacd0e3f8bce Mon Sep 17 00:00:00 2001 From: "@zimeg" Date: Mon, 26 Aug 2024 19:26:43 -0700 Subject: [PATCH] style: order database attributes with an alphabet --- docs/content/basic/authenticating-oauth.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; },