Move whitespace comment closer to where it applies (#4566)

This commit is contained in:
Marius Gedminas
2018-06-05 18:58:47 +03:00
committed by Joe Haddad
parent 6370e40aad
commit fffe909731

View File

@@ -1288,14 +1288,14 @@ To do this, set the `HTTPS` environment variable to `true`, then start the dev s
set HTTPS=true&&npm start
```
(Note: the lack of whitespace is intentional.)
#### Windows (Powershell)
```Powershell
($env:HTTPS = $true) -and (npm start)
```
(Note: the lack of whitespace is intentional.)
#### Linux, macOS (Bash)
```bash