Skip to content

Commit 801bbdb

Browse files
authored
Update Space.md
1 parent ab56d47 commit 801bbdb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Space.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ $aAndB = $a -and $b
1010
return $aAndB;
1111
```
1212

13-
Which outputs `False`.
13+
Which outputs `False`. Very correct.
1414

15-
But make that command to two lines.
15+
Now make that command to two lines.
1616

1717
```powershell
1818
$a = $true;
@@ -36,7 +36,7 @@ But if you add a space after
3636
```powershell
3737
$a = $true;
3838
$b = $false;
39-
$aAndB = $a ` <---- There is a pace
39+
$aAndB = $a ` <---- There is a space here
4040
-and $b
4141
4242
return $aAndB;

0 commit comments

Comments
 (0)