Skip to content

Commit d8d69e6

Browse files
committed
formatting fix
1 parent 2b79047 commit d8d69e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

COSQuickRef.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A list of some common ObjectScript expressions
99
| Call an instance method | `Do object.method(arguments)`<br>`Set variable = object.method(arguments)`<br>Note: place a . before each pass-by-reference argument |
1010
| Create a new object | `Set object = ##class(package.class).%New()` |
1111
| Open an existing object | `Set object = ##class(package.class).%OpenId(id, concurrency, .status)` |
12-
| Open an existing object by unique index value | `Set object = ##class(package.class).IndexNameOpen(value, concurrency, .status)` |
12+
| Open an existing object by unique index value| `Set object = ##class(package.class).IndexNameOpen(value, concurrency, .status)` |
1313
| Save an object | `Set status = object.%Save()` |
1414
| Retrieve the ID of a saved object | `Set id = object.%Id()` |
1515
| Retrieve the OID of a saved object | `Set oid = object.%Oid()` |
@@ -36,7 +36,7 @@ A list of some common ObjectScript expressions
3636
| Find classname of an object | `Write $classname(oref)` |
3737
| Start the SQL shell | `Do $system.SQL.Shell()` |
3838
| Test a class query | `Do ##class(%ResultSet).RunQuery(class, query)` |
39-
| Declare a variable's type for Studio Assist | `#dim object as package.class` |
39+
| Declare a variable's type for Studio Assist | `#dim object as package.class` |
4040

4141
## ObjectScript Commands
4242

0 commit comments

Comments
 (0)