Skip to content

Commit 8367880

Browse files
ganickepelikhan
authored andcommitted
String bugs found by translators - 01242020 (microsoft#6490)
1 parent 6f75778 commit 8367880

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

common-docs/blocks/logic/boolean.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,19 @@ let greaterOrEqualThan = 42 >= 0;
2929

3030
Boolean values and operators are often used with an [if](/blocks/logic/if) or [while](/blocks/loops/while) statement to determine which code will execute next. For example:
3131

32+
```block
33+
let a = 5
34+
let b = 87
35+
36+
if (a < b) {
37+
a += 1
38+
}
39+
40+
while (a < b) {
41+
a += 1
42+
}
43+
```
44+
3245
## Functions that return a Boolean
3346

3447
Some functions return a Boolean value, which you can store in a Boolean variable. For example, the following code gets the on/off state of `point (1, 2)` and stores this in the Boolean variable named `on`. Then the code clears the screen if `on` is `true`:

common-docs/github/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
Don't forget to [commit](/github/commit) your code! You need to go to the GitHub view and click
66
on **commit & push** to save your changes in GitHub.
77

8-
## Is there an easy to review all the repositories from a user?
8+
## Is there an easy way to review all the repositories from a user?
99

1010
Yes, use the [Explorer](/github/explorer).

0 commit comments

Comments
 (0)