We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48bb7c1 commit ac999dbCopy full SHA for ac999db
style-guide.md
@@ -41,7 +41,7 @@ if a[0] == -b {
41
After every left brace should be an indent of 4 spaces, which should end before the closing right brace. For example:
42
```
43
loop (while foo > 2) {
44
- print( "Foo is greator than 2" );
+ print( "Foo is greater than 2" );
45
foo -= 1;
46
}
47
@@ -64,7 +64,7 @@ let my_list = [
64
];
65
66
67
-Trailing binary opetators should have the operator on the second line, unless the binop changes the a value. for example:
+Trailing binary operators should have the operator on the second line, unless the binop changes the a value. for example:
68
69
let sum =
70
a_really_long_var_name
0 commit comments