minor fixes

This commit is contained in:
Ilya Kantor 2019-07-26 23:21:49 +03:00
parent 689975093c
commit f6ff773033
24 changed files with 67 additions and 76 deletions

View file

@ -1,4 +1,4 @@
First, the variable for the name of our planet.
## The variable for our planet
That's simple:
@ -8,7 +8,7 @@ let ourPlanetName = "Earth";
Note, we could use a shorter name `planet`, but it might be not obvious what planet it refers to. It's nice to be more verbose. At least until the variable isNotTooLong.
Second, the name of the current visitor:
## The name of the current visitor
```js
let currentUserName = "John";