diff --git a/docs/start/tutorial.md b/docs/start/tutorial.md
index b948328fe22..4a93a9cd6fa 100644
--- a/docs/start/tutorial.md
+++ b/docs/start/tutorial.md
@@ -5,25 +5,25 @@ order: 2
# Remix Tutorial
-We'll be building a small, but feature-rich app that lets you keep track of your contacts. There's no database or other "production ready" things so we can stay focused on Remix. We expect it to take about 30m if you're following along, otherwise it's a quick read. Check the other tutorials for more in-depth examples.
+We'll be building a small, but feature-rich app that lets you keep track of your contacts. There's no database or other "production ready" things, so we can stay focused on Remix. We expect it to take about 30m if you're following along, otherwise it's a quick read. Check the other tutorials for more in-depth examples.
-👉 **Every time you see this it means you need to do something in the app!**
+💿 **Every time you see this it means you need to do something in the app!**
The rest is just there for your information and deeper understanding. Let's get to it.
## Setup
-👉 **Generate a basic template**
+💿 **Generate a basic template**
```shellscript nonumber
npx create-remix@latest --template ryanflorence/remix-tutorial-template
```
-This uses a pretty bare-bones template but includes our css and data model so we can focus on Remix. The [Quick Start][quickstart] can familiarize you with the basic setup of a Remix project if you'd like to learn more.
+This uses a pretty bare-bones template but includes our css and data model, so we can focus on Remix. The [Quick Start][quickstart] can familiarize you with the basic setup of a Remix project if you'd like to learn more.
-👉 **Start the app**
+💿 **Start the app**
```shellscript nonumber
# cd into the app directory
@@ -48,24 +48,24 @@ Note the file at `app/root.tsx`. This is what we call the "Root Route". It's the