From bdb27eeb5f7f601bfb669063ce278cbfa42af9f9 Mon Sep 17 00:00:00 2001 From: Ciprian Siladi <107245777+csiladi@users.noreply.github.com> Date: Tue, 27 Feb 2024 13:20:42 +0200 Subject: [PATCH] Update interactive.md (#10378) Fix typo 'pubic' instead of 'public'. --- articles/quickstart/webapp/laravel/interactive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/quickstart/webapp/laravel/interactive.md b/articles/quickstart/webapp/laravel/interactive.md index f02b04289c..2cb6bdea01 100644 --- a/articles/quickstart/webapp/laravel/interactive.md +++ b/articles/quickstart/webapp/laravel/interactive.md @@ -203,7 +203,7 @@ Open your web browser and try accessing the following routes: - [http://localhost:8000](http://localhost:8000) to see the public route. - [http://localhost:8000/private](http://localhost:8000/private) to be prompted to authenticate. -- [http://localhost:8000](http://localhost:8000) to see the pubic route, now authenticated. +- [http://localhost:8000](http://localhost:8000) to see the public route, now authenticated. - [http://localhost:8000/scope](http://localhost:8000/scope) to check if you have the `read:messages` [permission](https://auth0.com/docs/manage-users/access-control/rbac). - [http://localhost:8000/update](http://localhost:8000/update) to update the user's profile. - [http://localhost:8000/logout](http://localhost:8000/logout) to log out.