Skip to content

Commit 4017ad1

Browse files
proof reading
1 parent 8a3e25e commit 4017ad1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

individual_modules/introduction_to_version_control/merge_conflicts.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
"\n",
216216
"\n",
217217
"### Understanding the representation of conflicts\n",
218-
"The content between the markers `<<<<<<< HEAD` and `=======` contains the changes that were made on the current branch i.e. the changes as they are at `HEAD`. In contrast, the content between the markers `=======` and `>>>>>>> main` represents the changes that have been made on the incoming branch, which in example above is `main`. (Of course, in the general case the incoming branch could be a different branch, in which case the name of this branch will be used in the third marker.)\n",
218+
"The content between the markers `<<<<<<< HEAD` and `=======` contains the changes that were made on the current branch i.e. the changes as they are at `HEAD`. In contrast, the content between the markers `=======` and `>>>>>>> main` represents the changes that have been made on the incoming branch, which in the example above is `main`. (Of course, in the general case, the incoming branch could be a different branch, in which case the name of this branch will be used in the third marker.)\n",
219219
"\n",
220220
"\n",
221221
"In order to fix this conflict, we simply need to edit this text so that it contains\n",

individual_modules/introduction_to_version_control/questions/summary_merge_conflicts.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"feedback": "Incorrect"
1010
},
1111
{
12-
"answer": "A situation where Git cannot automtically resolve differences betwen branches",
12+
"answer": "A situation where Git cannot automatically resolve differences between branches",
1313
"correct": true,
1414
"feedback": "Correct"
1515
},
1616
{
17-
"answer": "An error tat occurs when there is no internet connection",
17+
"answer": "An error that occurs when there is no internet connection",
1818
"correct": false,
1919
"feedback": "Incorrect"
2020
},
@@ -26,7 +26,7 @@
2626
]
2727
},
2828
{
29-
"question": "Which command is used to abort a merge and return the previous state?",
29+
"question": "Which command is used to abort a merge and return to the previous state?",
3030
"type": "many_choice",
3131
"answers": [
3232
{
@@ -52,7 +52,7 @@
5252
]
5353
},
5454
{
55-
"question": "How does Git idnicate the conflicting sections in a file during a merge conflict?",
55+
"question": "How does Git indicate the conflicting sections in a file during a merge conflict?",
5656
"type": "many_choice",
5757
"answers": [
5858
{

0 commit comments

Comments
 (0)