Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cd78637

Browse files
committed
Merge pull request csev#115 from EternalFootman/patch-9
Em-dash fix, ch. 2
2 parents 2a617ae + 067287c commit cd78637

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/02-variables.mkd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ for other operators:
386386
So 7 divided by 3 is 2 with 1 left over.
387387

388388
The modulus operator turns out to be surprisingly useful. For example,
389-
you can check whether one number is divisible by anotherif `x %
389+
you can check whether one number is divisible by another: if `x %
390390
y` is zero, then `x` is divisible by `y`.
391391

392392
\index{divisibility}
@@ -520,7 +520,7 @@ comments at the end of a line:
520520
percentage = (minute * 100) / 60 # percentage of an hour
521521
~~~~
522522

523-
Everything from the `\#` to the end of the line is ignoredit
523+
Everything from the `\#` to the end of the line is ignored; it
524524
has no effect on the program.
525525

526526
Comments are most useful when they document non-obvious features of the

0 commit comments

Comments
 (0)