Merge pull request #3616 from epmatsw/spelling

Quick spelling fixes
This commit is contained in:
Michael Ficarra 2014-08-26 19:46:34 -07:00
commit 8b066f125d
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]