From 3b5cc43c80c3c72d4b3f88ffc59990ad973228f0 Mon Sep 17 00:00:00 2001 From: Muhammad Mahmoud Date: Sat, 13 Jul 2024 17:22:12 +0300 Subject: [PATCH] docs: fix typo in external endpoints (#798) --- docs/guide/local/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/local/quick-start.md b/docs/guide/local/quick-start.md index 21b5f8e3..dded70f0 100644 --- a/docs/guide/local/quick-start.md +++ b/docs/guide/local/quick-start.md @@ -97,7 +97,7 @@ auth: { signIn: { path: '/login', method: 'post' }, // [!code --] signIn: { path: 'login', method: 'post' }, // [!code ++] getSession: { path: '/session', method: 'get' }, // [!code --] - getSession: { path: '/session', method: 'get' }, // [!code ++] + getSession: { path: 'session', method: 'get' }, // [!code ++] } } ```