diff --git a/apps/permissions/README.md b/apps/permissions/README.md
index 4b87512..96e55ec 100644
--- a/apps/permissions/README.md
+++ b/apps/permissions/README.md
@@ -18,6 +18,7 @@ In LoginComponent, you will find 6 buttons corresponding at 6 differents users.
- Writer
- Reader and Writer
- Client
+- Everyone
### Step 1
@@ -31,12 +32,20 @@ In **InformationComponent**, display the correct piece of information for each r
You should end up with something like below:
```html
-
Info for Manager
+
Info for Role1
+```
+
+```html
+
Info for Role1 and Role2
+```
+
+```html
+
Info Only for superadmin
```
### Step 2
-In **Routes.ts**, route all user to the correct DashboardComponent using CanMatch guard.
+In **Routes.ts**, route all user to the correct **DashboardComponent** using **CanMatch** guard.
### Submitting your work
diff --git a/apps/permissions/src/app/information.component.ts b/apps/permissions/src/app/information.component.ts
index 08ca6ab..e4adeb1 100644
--- a/apps/permissions/src/app/information.component.ts
+++ b/apps/permissions/src/app/information.component.ts
@@ -9,10 +9,12 @@ import { UserStore } from './user.store';
template: `