From 9ba5e06ecc11eb80fdfd8bccb3bf73985c42d826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionic=C4=83=20Biz=C4=83u?= Date: Wed, 20 Apr 2016 11:11:23 +0300 Subject: [PATCH] Fix double "the" in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b79d60422..9c50766c5a 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ When you've completed the steps in a challenge click 'Verify'. Depending on the ### Tips For Getting Started -**Code snippets** often times look like `$ some code-stuff --here`. The dollar sign identifies the line as one a user would enter into the the command line, but you don't actually include it when you type it into terminal. In this case, you'd actually just type `some code-stuff --here`. +**Code snippets** often times look like `$ some code-stuff --here`. The dollar sign identifies the line as one a user would enter into the command line, but you don't actually include it when you type it into terminal. In this case, you'd actually just type `some code-stuff --here`. **Variables** are indicated by `` in code snippets. When you actually use the line of code, replace it, including the `<>`, with your variable. For instance to make a new folder in terminal the format is, `mkdir `, so if you wanted to make a folder named 'octocat', you'd type: `mkdir octocat`.