|
6 | 6 | - [Defining Available Permissions](#defining-available-permissions) |
7 | 7 | - [Assigning Permissions to Groups](#assigning-permissions-to-groups) |
8 | 8 | - [Authorizing Users](#authorizing-users) |
9 | | - - [can()](#can) |
10 | | - - [inGroup()](#ingroup) |
11 | | - - [hasPermission()](#haspermission) |
12 | | - - [Authorizing via Routes](#authorizing-via-routes) |
| 9 | + - [can()](#can) |
| 10 | + - [inGroup()](#ingroup) |
| 11 | + - [hasPermission()](#haspermission) |
| 12 | + - [Authorizing via Routes](#authorizing-via-routes) |
13 | 13 | - [Managing User Permissions](#managing-user-permissions) |
14 | | - - [addPermission()](#addpermission) |
15 | | - - [removePermission()](#removepermission) |
16 | | - - [syncPermissions()](#syncpermissions) |
17 | | - - [getPermissions()](#getpermissions) |
| 14 | + - [addPermission()](#addpermission) |
| 15 | + - [removePermission()](#removepermission) |
| 16 | + - [syncPermissions()](#syncpermissions) |
| 17 | + - [getPermissions()](#getpermissions) |
18 | 18 | - [Managing User Groups](#managing-user-groups) |
19 | | - - [addGroup()](#addgroup) |
20 | | - - [removeGroup()](#removegroup) |
21 | | - - [syncGroups()](#syncgroups) |
22 | | - - [getGroups()](#getgroups) |
| 19 | + - [addGroup()](#addgroup) |
| 20 | + - [removeGroup()](#removegroup) |
| 21 | + - [syncGroups()](#syncgroups) |
| 22 | + - [getGroups()](#getgroups) |
23 | 23 | - [User Activation](#user-activation) |
24 | 24 | - [Checking Activation Status](#checking-activation-status) |
25 | 25 | - [Activating a User](#activating-a-user) |
@@ -264,7 +264,7 @@ if ($user->isNotActivated()) { |
264 | 264 |
|
265 | 265 | ## Activating a User |
266 | 266 |
|
267 | | -Users are automatically activated withih the `EmailActivator` action. They can be manually activated via the `activate()` method on the User entity. |
| 267 | +Users are automatically activated within the `EmailActivator` action. They can be manually activated via the `activate()` method on the User entity. |
268 | 268 |
|
269 | 269 | ```php |
270 | 270 | $user->activate(); |
|
0 commit comments