From 2e77906f0a31b7e93c2a56f97bb406753b9ca644 Mon Sep 17 00:00:00 2001 From: Robin Munn Date: Mon, 13 Jan 2020 11:03:09 +0700 Subject: [PATCH] Fix typo in README Example "git remote" command had "origin" listed twice so it was an invalid command. Also changed "MyCoolNewLib" sample name to "MyCoolNewApp" in the console-project version of the readme. --- Content/Console/README.md | 2 +- Content/Library/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content/Console/README.md b/Content/Console/README.md index f0bf17dc..2ebdef64 100644 --- a/Content/Console/README.md +++ b/Content/Console/README.md @@ -86,7 +86,7 @@ $ ./build.sh // on unix ```sh git add . git commit -m "Scaffold" -git remote add origin origin https://github.com/user/MyCoolNewLib.git +git remote add origin https://github.com/user/MyCoolNewApp.git git push -u origin master ``` diff --git a/Content/Library/README.md b/Content/Library/README.md index 33725191..56e7ff58 100644 --- a/Content/Library/README.md +++ b/Content/Library/README.md @@ -103,7 +103,7 @@ src/MyCoolNewLib/bin/ ```sh git add . git commit -m "Scaffold" -git remote add origin origin https://github.com/user/MyCoolNewLib.git +git remote add origin https://github.com/user/MyCoolNewLib.git git push -u origin master ```