Skip to content

Commit 94c467b

Browse files
committed
Quick spelling fixes
1 parent 81047d4 commit 94c467b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

documentation/index.html.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1463,7 +1463,7 @@ Expressions
14631463
effectively creating a shallow copy of the list.
14641464
</li>
14651465
<li>
1466-
Additional tweaks and improvments to <tt>coffee --watch</tt> under
1466+
Additional tweaks and improvements to <tt>coffee --watch</tt> under
14671467
Node's "new" file watching API. Watch will now beep by default
14681468
if you introduce a syntax error into a watched script. We also now
14691469
ignore hidden directories by default when watching recursively.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2771,7 +2771,7 @@ <h2>
27712771
effectively creating a shallow copy of the list.
27722772
</li>
27732773
<li>
2774-
Additional tweaks and improvments to <tt>coffee --watch</tt> under
2774+
Additional tweaks and improvements to <tt>coffee --watch</tt> under
27752775
Node's "new" file watching API. Watch will now beep by default
27762776
if you introduce a syntax error into a watched script. We also now
27772777
ignore hidden directories by default when watching recursively.

test/helpers.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ test "the `compact` helper removes falsey values from an array, preserves truthy
4646

4747
# `count`
4848

49-
test "the `count` helper counts the number of occurances of a string in another string", ->
49+
test "the `count` helper counts the number of occurrences of a string in another string", ->
5050
eq 1/0, count('abc', '')
5151
eq 0, count('abc', 'z')
5252
eq 1, count('abc', 'a')

test/sourcemap.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ test "SourceMap tests", ->
3737
# Look up a generated column - should get back the original source position.
3838
arrayEq map.sourceLocation([2,8]), [1,9]
3939

40-
# Look up a point futher along on the same line - should get back the same source position.
40+
# Look up a point further along on the same line - should get back the same source position.
4141
arrayEq map.sourceLocation([2,10]), [1,9]

0 commit comments

Comments
 (0)