diff --git a/docs/docs/router.md b/docs/docs/router.md
index 08bbbfdd6d8f..ff4e0ee76d78 100644
--- a/docs/docs/router.md
+++ b/docs/docs/router.md
@@ -128,31 +128,18 @@ becomes...
```
-### `private` Set
+### `PrivateSet`
-Sets can take a `private` prop which makes all Routes inside that Set require authentication. When a user isn't authenticated and attempts to visit one of the Routes in the private Set, they'll be redirected to the Route passed as the Set's `unauthenticated` prop. The originally-requested Route's path is added to the query string as a `redirectTo` param. This lets you send the user to the page they originally requested once they're logged-in.
+A `PrivateSet` makes all Routes inside that Set require authentication. When a user isn't authenticated and attempts to visit one of the Routes in the `PrivateSet`, they'll be redirected to the Route passed as the `PrivateSet`'s `unauthenticated` prop. The originally-requested Route's path is added to the query string as a `redirectTo` param. This lets you send the user to the page they originally requested once they're logged-in.
Here's an example of how you'd use a private set:
-```jsx title="Routes.js"
-
-
-
-
-
-
-```
-
-Private routes are important and should be easy to spot in your Routes file. The larger your Routes file gets, the more difficult it will probably become to find `` among your other Sets. So we also provide a `` component that's just an alias for ``. Most of our documentation uses ``.
-
-Here's the same example again, but now using ``
-
```jsx title="Routes.js"
-
+
```
@@ -164,7 +151,7 @@ To protect `Private` routes for access by a single role:
-
+
@@ -176,7 +163,7 @@ To protect `Private` routes for access by multiple roles:
-
+
@@ -572,7 +559,7 @@ When the lazy-loaded page is loading, `PageLoadingContext.Consumer` will pass `{
Let's say you have a dashboard area on your Redwood app, which can only be accessed after logging in. When Redwood Router renders your private page, it will first fetch the user's details, and only render the page if it determines the user is indeed logged in.
-In order to display a loader while auth details are being retrieved you can add the `whileLoadingAuth` prop to your private ``, `` or the `` component:
+In order to display a loader while auth details are being retrieved you can add the `whileLoadingAuth` prop to your private `` or `` component:
```jsx
//Routes.js