Skip to content
This repository has been archived by the owner on Jan 18, 2019. It is now read-only.

Fixed a few typos bro! #1

Merged
merged 1 commit into from
Jun 8, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions coffeescript/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

@@@javascript
fill = (container, liquid="coffee") ->
"Filling #{contained} with #{liquid}"
"Filling #{container} with #{liquid}"

##Compiles to:##

Expand Down Expand Up @@ -194,7 +194,7 @@
class Animal
constructor: (@name) ->

move: (meter) ->
move: (meters) ->
alert @name + " moved " + meters + "m."

class Snake extends Animal
Expand Down