Skip to content

Commit ac999db

Browse files
committed
Operator and greater were misspelled
1 parent 48bb7c1 commit ac999db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

style-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if a[0] == -b {
4141
After every left brace should be an indent of 4 spaces, which should end before the closing right brace. For example:
4242
```
4343
loop (while foo > 2) {
44-
print( "Foo is greator than 2" );
44+
print( "Foo is greater than 2" );
4545
foo -= 1;
4646
}
4747
```
@@ -64,7 +64,7 @@ let my_list = [
6464
];
6565
```
6666

67-
Trailing binary opetators should have the operator on the second line, unless the binop changes the a value. for example:
67+
Trailing binary operators should have the operator on the second line, unless the binop changes the a value. for example:
6868
```
6969
let sum =
7070
a_really_long_var_name

0 commit comments

Comments
 (0)