Skip to content

Commit e424ad2

Browse files
authored
minor grammar fix
1 parent 291b5c0 commit e424ad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/02-number/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ There are two ways to do so:
178178
alert( num.toFixed(1) ); // "12.4"
179179
```
180180

181-
Please note that result of `toFixed` is a string. If the decimal part is shorter than required, zeroes are appended to the end:
181+
Please note that the result of `toFixed` is a string. If the decimal part is shorter than required, zeroes are appended to the end:
182182

183183
```js run
184184
let num = 12.34;

0 commit comments

Comments
 (0)