summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-07-23 07:52:21 -0700
committerAdam <adam@adambard.com>2013-07-23 07:52:21 -0700
commitde1fc9ddbcab65869440fb148c885c57eb272df8 (patch)
tree37575398140e59deb6617e00324bc29c27c1f8ff
parent4e848cbfd00667bf51c956c5fa1f7a0d7c4213e6 (diff)
Fix
-rw-r--r--git.html.markdown2
-rw-r--r--livescript.html.markdown5
2 files changed, 4 insertions, 3 deletions
diff --git a/git.html.markdown b/git.html.markdown
index c10559c7..28f72e15 100644
--- a/git.html.markdown
+++ b/git.html.markdown
@@ -9,7 +9,7 @@ filename: LearnGit.txt
Git is a distributed version control and source code management system.
-Git does this through a series of snapshopts of your project, and it works
+Git does this through a series of snapshots of your project, and it works
with those snapshots to provide you with functionality to version and
manage your source code.
diff --git a/livescript.html.markdown b/livescript.html.markdown
index 2c72df0a..8e11439b 100644
--- a/livescript.html.markdown
+++ b/livescript.html.markdown
@@ -22,7 +22,7 @@ Feedback is always welcome, so feel free to reach me over at
[@kurisuwhyte](https://twitter.com/kurisuwhyte) :)
-```livescript
+```coffeescript
# Just like its CoffeeScript cousin, LiveScript uses hash symbols for
# single-line comments.
@@ -30,7 +30,8 @@ Feedback is always welcome, so feel free to reach me over at
Multi-line comments are written C-style. Use them if you want comments
to be preserved in the JavaScript output.
*/
-
+```
+```coffeescript
# As far as syntax goes, LiveScript uses indentation to delimit blocks,
# rather than curly braces, and whitespace to apply functions, rather
# than parenthesis.