From 0f3e8df139b55d2765e7c394d889db42e94006d8 Mon Sep 17 00:00:00 2001 From: Prayag Verma Date: Tue, 2 Feb 2016 16:37:27 +0530 Subject: [PATCH] Minor typo in Readme.md Removes the extra `the` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34610822d7..aed470e5bf 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ $ git-it ### 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`.