diff --git a/basic/index.html b/basic/index.html index c4438d2..c20e4ce 100644 --- a/basic/index.html +++ b/basic/index.html @@ -518,11 +518,11 @@ Further paragraphs come after blank lines. The commit message is very important. Since much of the power of Git is this flexibility in carefully crafting commits locally and then sharing them later, it is very powerful to be able to write three or - four commits of logically seperate changes so that your work may be more + four commits of logically separate changes so that your work may be more easily peer reviewed. Since there is a seperation between committing and pushing those changes, do take the time to make it easier for the people you are working with to see what you've done by putting each logically - seperate change in a seperate commit with a nice commit message so it + separate change in a separate commit with a nice commit message so it is easier for them to see what you are doing and why.

@@ -610,7 +610,7 @@ Further paragraphs come after blank lines. git reset HEAD -- file. Technically here you don't have to add the -- - it is used to tell Git when you have stopped listing options and are now listing file paths, but it's probably good to - get into the habit of using it to seperate options from paths even if you + get into the habit of using it to separate options from paths even if you don't need to.