scratch 'as seen above'

This commit is contained in:
Jeremy Ashkenas 2010-03-08 06:44:47 -05:00
parent 912f3b19f7
commit 5528bc7b2d
2 changed files with 2 additions and 2 deletions

View File

@ -637,7 +637,7 @@ coffee --print app/scripts/*.coffee > concatenation.js</pre>
<p>
If structuring your prototypes classically isn't your cup of tea, CoffeeScript
provides a couple of lower-level conveniences. The <tt>extends</tt> operator
helps with proper prototype setup, as seen above, <tt>::</tt> gives you
helps with proper prototype setup, <tt>::</tt> gives you
quick access to an object's prototype, and <tt>super()</tt>
is converted into a call against the immediate ancestor's method of the same name.
</p>

View File

@ -1298,7 +1298,7 @@ tom.move();
<p>
If structuring your prototypes classically isn't your cup of tea, CoffeeScript
provides a couple of lower-level conveniences. The <tt>extends</tt> operator
helps with proper prototype setup, as seen above, <tt>::</tt> gives you
helps with proper prototype setup, <tt>::</tt> gives you
quick access to an object's prototype, and <tt>super()</tt>
is converted into a call against the immediate ancestor's method of the same name.
</p>