From 4c7eeb9a99df5f12e888bb85ef26c4ea071d64b5 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 1 Sep 2022 18:04:18 +0200 Subject: [PATCH] Fix typo in passport.blade.md (#195) --- source/docs/v3/integrations/passport.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/integrations/passport.blade.md b/source/docs/v3/integrations/passport.blade.md index 558c683..6b31aa9 100644 --- a/source/docs/v3/integrations/passport.blade.md +++ b/source/docs/v3/integrations/passport.blade.md @@ -75,7 +75,7 @@ public function run() Then, seed the database and generate the key pair by running `php artisan passport:keys`. ### **Tenant-specific keys** {#tenant-specific-keys} -> **Note:** The security benefit of doing this is negligable since you're likely already using the same `APP_KEY` for all tenants. This is a relatively complex approach, so before implementing it, make sure you really want it. **Using shared keys instead is strongly recommended.** +> **Note:** The security benefit of doing this is negligible since you're likely already using the same `APP_KEY` for all tenants. This is a relatively complex approach, so before implementing it, make sure you really want it. **Using shared keys instead is strongly recommended.** > **Warning:** The usage of tenant specific keys has not been fully tested. [Feel free to contribute to this section.]({{ $page->editLink() }})