From 74501f643cd54d7ca2d773ebe88ccd191ec79e14 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 8 Nov 2011 18:12:58 -0500 Subject: [PATCH] whoops. --- index.html | 65 +++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 47 insertions(+), 18 deletions(-) diff --git a/index.html b/index.html index 0cf5db48..a5e650fb 100644 --- a/index.html +++ b/index.html @@ -93,7 +93,7 @@

CoffeeScript is a little language that compiles into JavaScript. Underneath - all of those embarrassing braces and semicolons, JavaScript has always had + all those awkward braces and semicolons, JavaScript has always had a gorgeous object model at its heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way.

@@ -102,8 +102,9 @@ The golden rule of CoffeeScript is: "It's just JavaScript". The code compiles one-to-one into the equivalent JS, and there is no interpretation at runtime. You can use any existing JavaScript library - seamlessly (and vice-versa). The compiled output is readable and pretty-printed, - passes through JavaScript Lint + seamlessly from CoffeeScript (and vice-versa). The compiled output is + readable and pretty-printed, passes through + JavaScript Lint without warnings, will work in every JavaScript implementation, and tends to run as fast or faster than the equivalent handwritten JavaScript.

@@ -300,8 +301,7 @@ sudo bin/cake install -i, --interactive Launch an interactive CoffeeScript session to try short snippets. - More pleasant if wrapped with - rlwrap. + Identical to calling coffee with no arguments. @@ -322,8 +322,8 @@ sudo bin/cake install -w, --watch - Watch the modification times of the coffee-scripts, recompiling as - soon as a change occurs. + Watch files for changes, rerunning the specified command when any + file is updated. @@ -368,8 +368,8 @@ sudo bin/cake install -b, --bare - Compile the JavaScript without the top-level function safety wrapper. - (Used for CoffeeScript as a Node.js module.) + Compile the JavaScript without the + top-level function safety wrapper. @@ -410,9 +410,9 @@ Expressions