Skip to content

Commit d56d519

Browse files
committed
Update README.md
1 parent d40be2e commit d56d519

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ If (expression) {
3535
```
3636
* We recommend to use fully qualified package name of a class (except `%Library` package)
3737
```
38-
Set obj = do ##class(Sample.Person).%New(initexpresion)
38+
Set obj = ##class(Sample.Person).%New(initexpresion)
3939
```
4040
instead of
4141
```
42-
Set obj = do ##class(Person).%New(initexpresion)
42+
Set obj = ##class(Person).%New(initexpresion)
4343
```
4444
* In general, use the reasonable name convention consistently across whole hierarchy. We recommend to use CamelCase for classes, methods and properties (e.g. `Sample.Person`, `OpenFile`, `LastIndex`, etc.), but smallCamelCase for local variables (e.g. `startDate`, `endDate`), but please be consistent and use local schema if it's different than current recommendation.
4545
* We recommend to use `#dim` statement for declaration of local variables types, e.g.

0 commit comments

Comments
 (0)