Skip to content

Commit ad7f1b2

Browse files
committed
fix three typos
1 parent 81c31f9 commit ad7f1b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ but which will be introducing some unnecessary inconsistency.
1111

1212
* Only "modern" syntax permitted, dotted syntax is not generally allowed (with few exceptions);
1313
* 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.
1515

1616
## Recommended part
1717
* 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)
4848
do array.SetAt(id, "id")
4949
#dim status As %Status = $$$OK
5050
```
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.
5252
* Please indent blocks reasonably. We recommend to use 8, 4 or 2 spaces indentations. Pick your level, and apply consistently.
5353
```
5454
if (expression) {
@@ -60,7 +60,7 @@ Set obj = ##class(Person).%New(initexpresion)
6060
}
6161
}
6262
```
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.
6464
```
6565
Write 1, 2, 3
6666
Do ..Method(arg1, arg2, argN)

0 commit comments

Comments
 (0)