You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ but which will be introducing some unnecessary inconsistency.
11
11
12
12
* Only "modern" syntax permitted, dotted syntax is not generally allowed (with few exceptions);
13
13
* No short name for statements keywords or built-in functions allowed - use fully expanded names;
14
-
* Comment your code appropriately, use English in comments to make your code easy to understand by your international collegues. Same English-based rule applies to global, local, and type names.
14
+
* Comment your code appropriately, use English in comments to make your code easy to understand by your international colleagues. Same English-based rule applies to global, local, and type names.
15
15
16
16
## Recommended part
17
17
* We recommend to use fully expanded keyword or function name in lower case or capitalized. Whatever you'll select should be consistent across class or utility, i.e.
@@ -48,7 +48,7 @@ Set obj = ##class(Person).%New(initexpresion)
48
48
do array.SetAt(id, "id")
49
49
#dim status As %Status = $$$OK
50
50
```
51
-
This will help editor to provide better auto-complete, and eventually will be used by static checker for type informantion extraction.
51
+
This will help editor to provide better auto-complete, and eventually will be used by static checker for type information extraction.
52
52
* Please indent blocks reasonably. We recommend to use 8, 4 or 2 spaces indentations. Pick your level, and apply consistently.
53
53
```
54
54
if (expression) {
@@ -60,7 +60,7 @@ Set obj = ##class(Person).%New(initexpresion)
60
60
}
61
61
}
62
62
```
63
-
* For better readablity please insert spaces after comma in functions/methods argument list, i.e.
63
+
* For better readability please insert spaces after comma in functions/methods argument list, i.e.
0 commit comments