Skip to content

Commit ca46cb1

Browse files
authored
Merge pull request javascript-tutorial#11 from AGCB/patch-1
two typos
2 parents 7e29612 + 074151a commit ca46cb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/06-type-conversions/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ alert( 1 + '2' ); // '12' (string to the right)
9393
alert( '1' + 2 ); // '12' (string to the left)
9494
```
9595
96-
That only happens when one of arguments is a string. Otherwise values are converted to numbers.
96+
That only happens when one of the arguments is a string. Otherwise, values are converted to numbers.
9797
````
9898

9999
## ToBoolean

0 commit comments

Comments
 (0)