From 316b23324c185308ce0ae3b432408cbfaffb033f Mon Sep 17 00:00:00 2001 From: Thomas Date: Thu, 21 Jun 2018 21:23:48 +0200 Subject: [PATCH] Fix typos --- src/levels/rampup/reversingChanges.js | 2 +- src/levels/remote/pushArgs.js | 2 +- src/levels/remote/pushArgs2.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/levels/rampup/reversingChanges.js b/src/levels/rampup/reversingChanges.js index f64c1ae0..5619adb5 100644 --- a/src/levels/rampup/reversingChanges.js +++ b/src/levels/rampup/reversingChanges.js @@ -68,7 +68,7 @@ exports.level = { "beforeMarkdowns": [ "## Git Revert", "", - "While reseting works great for local branches on your own machine, its method of \"rewriting history\" doesn't work for remote branches that others are using.", + "While resetting works great for local branches on your own machine, its method of \"rewriting history\" doesn't work for remote branches that others are using.", "", "In order to reverse changes and *share* those reversed changes with others, we need to use `git revert`. Let's see it in action" ], diff --git a/src/levels/remote/pushArgs.js b/src/levels/remote/pushArgs.js index 3b7f236c..7da6ee93 100644 --- a/src/levels/remote/pushArgs.js +++ b/src/levels/remote/pushArgs.js @@ -60,7 +60,7 @@ exports.level = { "", "translates to this in English:", "", - "*Go to the branch named \"master\" in my repository, grab all the commits, and then go to the branch \"master\" on the remote named \"origin.\" Place whatever commits are missing on that branch and then tell me when you're done.*", + "*Go to the branch named \"master\" in my repository, grab all the commits, and then go to the branch \"master\" on the remote named \"origin\". Place whatever commits are missing on that branch and then tell me when you're done.*", "", "By specifying `master` as the \"place\" argument, we told git where the commits will *come from* and where the commits *will go*. It's essentially the \"place\" or \"location\" to synchronize between the two repositories.", "", diff --git a/src/levels/remote/pushArgs2.js b/src/levels/remote/pushArgs2.js index d9804f94..f333e40e 100644 --- a/src/levels/remote/pushArgs2.js +++ b/src/levels/remote/pushArgs2.js @@ -55,7 +55,7 @@ exports.level = { "", "`git push origin :`", "", - "This is commonly referred to as a colon refspec. Refspec is just a fancy name for a location that git can figure out (like the branch `foo` or even just `HEAD~1`)", + "This is commonly referred to as a colon refspec. Refspec is just a fancy name for a location that git can figure out (like the branch `foo` or even just `HEAD~1`)"., "", "Once you are specifying both the source and destination independently, you can get quite fancy and precise with remote commands. Let's see a demo!" ]