fix: questions typos of the if statement section

This commit is contained in:
Inanc Gumus
2018-10-21 23:16:30 +03:00
parent a29cb99fcb
commit 2db3731b25
7 changed files with 22 additions and 55 deletions

View File

@ -3,10 +3,10 @@
2. `!=`
3. `>` *CORRECT*
> **3:** That's the greater operator. It checks whether a ordered value is greater than the other or not.
> **3:** That's the greater operator. It checks whether an ordered value is greater than the other or not.
## Which one below is not one of the comparison operators of Go?
## Which one below is not one of the ordering operators of Go?
1. `>`
2. `<=`
3. `==` *CORRECT*
@ -24,7 +24,7 @@
> **3:** That's right. All the comparison operators return an untyped bool value (true or false).
## Which one of these cannot be used as an operand to ordering operators (`>`, `<`, `>=`, `<=`)?
## Which one of these below cannot be used as an operand to ordering operators (`>`, `<`, `>=`, `<=`)?
1. int value
2. byte value
3. string value