Skip to content

Commit 734b35e

Browse files
author
Markus Amalthea Magnuson
committed
Fix a couple of typos.
1 parent 5b6aaf6 commit 734b35e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

page/javascript-101/syntax-basics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ JavaScript has support for single and multi-line comments. Comments are ignored
2424

2525
### Whitespace
2626

27-
Whitespace is also ignored in JavaScript. There are many tools that will strip out all the whitespace in a program, reducing the overall file size and improving network latency. Given the availability of tools like these, whitespace should be leveraged to make the code as readible as possible.
27+
Whitespace is also ignored in JavaScript. There are many tools that will strip out all the whitespace in a program, reducing the overall file size and improving network latency. Given the availability of tools like these, whitespace should be leveraged to make the code as readable as possible.
2828

2929
```
3030
// Whitespace is insignificant.
@@ -64,7 +64,7 @@ Identifiers are used to give variables and functions a unique name so they can s
6464
* Can only be composed of letters, numbers, dollar signs, and underscores.
6565
* The first character cannot be a number.
6666

67-
It's a best practice to name identifers in a way that will make sense to you and other developers later on.
67+
It's a best practice to name identifiers in a way that will make sense to you and other developers later on.
6868

6969
```
7070
// Valid identifier names.

0 commit comments

Comments
 (0)