1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

Quick spelling fixes

This commit is contained in:
Will Stamper 2014-08-26 20:34:45 -05:00
parent 81047d45ee
commit 94c467b520
4 changed files with 4 additions and 4 deletions

View file

@ -1463,7 +1463,7 @@ Expressions
effectively creating a shallow copy of the list.
</li>
<li>
Additional tweaks and improvments to <tt>coffee --watch</tt> under
Additional tweaks and improvements to <tt>coffee --watch</tt> under
Node's "new" file watching API. Watch will now beep by default
if you introduce a syntax error into a watched script. We also now
ignore hidden directories by default when watching recursively.

View file

@ -2771,7 +2771,7 @@ task(<span class="string">'build:parser'</span>, <span class="string">'rebuild t
effectively creating a shallow copy of the list.
</li>
<li>
Additional tweaks and improvments to <tt>coffee --watch</tt> under
Additional tweaks and improvements to <tt>coffee --watch</tt> under
Node's "new" file watching API. Watch will now beep by default
if you introduce a syntax error into a watched script. We also now
ignore hidden directories by default when watching recursively.

View file

@ -46,7 +46,7 @@ test "the `compact` helper removes falsey values from an array, preserves truthy
# `count`
test "the `count` helper counts the number of occurances of a string in another string", ->
test "the `count` helper counts the number of occurrences of a string in another string", ->
eq 1/0, count('abc', '')
eq 0, count('abc', 'z')
eq 1, count('abc', 'a')

View file

@ -37,5 +37,5 @@ test "SourceMap tests", ->
# Look up a generated column - should get back the original source position.
arrayEq map.sourceLocation([2,8]), [1,9]
# Look up a point futher along on the same line - should get back the same source position.
# Look up a point further along on the same line - should get back the same source position.
arrayEq map.sourceLocation([2,10]), [1,9]