From 7c9212bff68b61528ff124a77a1aa1f2b7ef6361 Mon Sep 17 00:00:00 2001 From: kriskbx Date: Thu, 3 Dec 2020 18:13:43 +0100 Subject: [PATCH] typo --- docs/src/docPages/guide/collaborative-editing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/docPages/guide/collaborative-editing.md b/docs/src/docPages/guide/collaborative-editing.md index 804a8425..a9ab0e9a 100644 --- a/docs/src/docPages/guide/collaborative-editing.md +++ b/docs/src/docPages/guide/collaborative-editing.md @@ -216,7 +216,7 @@ const server = Server.configure({ const { requestHeaders, requestParameters } = data // Your code here, for example a request to an API - // If the user is not authorized … + // If the user is not authenticated … if (requestParameters.access_token !== 'super-secret-token') { return reject() } @@ -226,7 +226,7 @@ const server = Server.configure({ user_id: 1234, } - // If the user is authorized … + // If the user is authenticated … resolve(context) }, })