From 3d648debb7e6f713b81153bbc2ab6a337ff74c5d Mon Sep 17 00:00:00 2001 From: Luca <26968185+VineVax@users.noreply.github.com> Date: Fri, 2 Oct 2020 15:48:59 +0200 Subject: [PATCH] fix typo (#89) --- source/docs/v3/introduction.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/introduction.blade.md b/source/docs/v3/introduction.blade.md index 51c12db..b277e3b 100644 --- a/source/docs/v3/introduction.blade.md +++ b/source/docs/v3/introduction.blade.md @@ -12,7 +12,7 @@ Multi-tenancy is the ability to provide your service to multiple users (tenants) You may find this talk insightful: [https://multitenantlaravel.com/](https://multitenantlaravel.com/). Simply going through the slides will give you 80% of the value of the talk in under five minutes. -Note that if you just want to, say, scope todo tasks to the current user, there's no need to use a multi-tenancy package. Just use calls like `auth()->user()->tasks()`. This is the simplest for of multi-tenancy. +Note that if you just want to, say, scope todo tasks to the current user, there's no need to use a multi-tenancy package. Just use calls like `auth()->user()->tasks()`. This is the simplest form of multi-tenancy. This package is built around the idea that multi-tenancy usually means letting tenants have their own users which have their own resources, e.g. todo tasks. Not just users having tasks.