Skip to content

Commit ee3b64c

Browse files
committed
capitalize t at beginning of sentence. Remove extra ')'
1 parent d2d6779 commit ee3b64c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sites/en/javascript-to-do-list/programming_with_javascript.step

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ Functions are __invoked__ with parentheses, which causes them to run.
8787
JAVASCRIPT
8888

8989
message <<-MARKDOWN
90-
The __push__ function allows us to add new items to an array. the slice function returns a new array with
90+
The __push__ function allows us to add new items to an array. The slice function returns a new array with
9191
with everything to the right of the __index__ we provided. Here, we passed the function the number 1, so
92-
slice returned an array with everything after the first element in the array. (Note that the first element is assigned 0 as its index rather than 1).)
92+
slice returned an array with everything after the first element in the array. (Note that the first element is assigned 0 as its index rather than 1.)
9393
MARKDOWN
9494
end
9595

0 commit comments

Comments
 (0)