mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-19 00:58:24 +02:00
Fix typos
- lets -> let's - two missing periods - decapitalize word in the middle of a sentence
This commit is contained in:
parent
02a69e85c0
commit
7a74ac7fdf
1 changed files with 4 additions and 4 deletions
|
@ -69,7 +69,7 @@ exports.level = {
|
||||||
"",
|
"",
|
||||||
"`git branch -f master HEAD~3`",
|
"`git branch -f master HEAD~3`",
|
||||||
"",
|
"",
|
||||||
"Moves (by force) the master branch to three parents behind HEAD."
|
"moves (by force) the master branch to three parents behind HEAD."
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -77,10 +77,10 @@ exports.level = {
|
||||||
"type": "GitDemonstrationView",
|
"type": "GitDemonstrationView",
|
||||||
"options": {
|
"options": {
|
||||||
"beforeMarkdowns": [
|
"beforeMarkdowns": [
|
||||||
"Let's see that previous command in action"
|
"Let's see that previous command in action."
|
||||||
],
|
],
|
||||||
"afterMarkdowns": [
|
"afterMarkdowns": [
|
||||||
"There we go! Relative refs gave us a concise way to refer to `C1` and branch forcing (`-f`) gave us a way to quickly move a branch to that location"
|
"There we go! Relative refs gave us a concise way to refer to `C1` and branch forcing (`-f`) gave us a way to quickly move a branch to that location."
|
||||||
],
|
],
|
||||||
"command": "git branch -f master HEAD~3",
|
"command": "git branch -f master HEAD~3",
|
||||||
"beforeCommand": "git commit; git commit; git commit; git checkout -b bugFix"
|
"beforeCommand": "git commit; git commit; git commit; git checkout -b bugFix"
|
||||||
|
@ -90,7 +90,7 @@ exports.level = {
|
||||||
"type": "ModalAlert",
|
"type": "ModalAlert",
|
||||||
"options": {
|
"options": {
|
||||||
"markdowns": [
|
"markdowns": [
|
||||||
"Now that you have seen relative refs and branch forcing in combination, lets use them to solve the next level.",
|
"Now that you have seen relative refs and branch forcing in combination, let's use them to solve the next level.",
|
||||||
"",
|
"",
|
||||||
"To complete this level, move `HEAD`, `master`, and `bugFix` to their goal destinations shown."
|
"To complete this level, move `HEAD`, `master`, and `bugFix` to their goal destinations shown."
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue