Skip to content

Commit 40e1dc6

Browse files
authored
Update introduction.md (#1756)
Fix incorrect `<` comparison.
1 parent 3637175 commit 40e1dc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/assembly-line/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Here is a list of the operators and an example of when they give a `true` value:
3535

3636
| Method | Description | Example |
3737
| ------ | --------------------- | ------- |
38-
| < | less than | 5 < 4 |
38+
| < | less than | 4 < 5 |
3939
| <= | less than or equal | 4 <= 4 |
4040
| > | greater than | 3 > 1 |
4141
| >= | greater than or equal | 2 >= 2 |

0 commit comments

Comments
 (0)