Skip to content

Commit cd65baa

Browse files
author
mikeblome
committed
converted double brackets to special char
1 parent e99deab commit cd65baa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+97
-97
lines changed

docs/assembler/masm/align-masm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The **ALIGN** directive aligns the next data element or instruction on an addres
1111

1212
## Syntax
1313

14-
> **ALIGN** [[*number*]]
14+
> **ALIGN** *number*
1515
1616
## Remarks
1717

docs/assembler/masm/assume.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Enables error checking for register values. (32-bit MASM only.)
1111

1212
## Syntax
1313

14-
> **ASSUME** *segregister*:*name* [[, *segregister*:*name*]]...<br/>
15-
> **ASSUME** *dataregister*:*type* [[, *dataregister*:*type*]]...<br/>
16-
> **ASSUME** *register*:**ERROR** [[, *register*:**ERROR**]]...<br/>
17-
> **ASSUME** [[*register*:]] **NOTHING** [[, *register*:NOTHING]]...
14+
> **ASSUME** *segregister*:*name* , *segregister*:*name*...<br/>
15+
> **ASSUME** *dataregister*:*type* , *dataregister*:*type*...<br/>
16+
> **ASSUME** *register*:**ERROR** , *register*:**ERROR**...<br/>
17+
> **ASSUME** *register*: **NOTHING** , *register*:NOTHING...
1818
1919
## Remarks
2020

docs/assembler/masm/byte-masm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Allocates and optionally initializes a byte of storage for each *initializer*.
1111

1212
## Syntax
1313

14-
> [[*name*]] **BYTE** *initializer* [[, *initializer*]] ...
14+
> *name* **BYTE** *initializer* , *initializer* ...
1515
1616
## Remarks
1717

docs/assembler/masm/catstr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Concatenates text items.
1111

1212
## Syntax
1313

14-
> *name* **CATSTR** [[*textitem1* [[, *textitem2*]] ...]]
14+
> *name* **CATSTR** *textitem1* , *textitem2* ...
1515
1616
## Remarks
1717

docs/assembler/masm/comm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Creates a communal variable with the attributes specified in *definition*.
1111

1212
## Syntax
1313

14-
> **COMM** *definition* [[, *definition*]] ...
14+
> **COMM** *definition* , *definition* ...
1515
1616
## Remarks
1717

docs/assembler/masm/comment-masm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Treats all *text* between or on the same line as the delimiters as a comment.
1111

1212
## Syntax
1313

14-
> **COMMENT** *delimiter* [[*text*]]<br/>
15-
> [[*text*]]<br/>
16-
> [[*text*]] *delimiter* [[*text*]]
14+
> **COMMENT** *delimiter* *text*<br/>
15+
> *text*<br/>
16+
> *text* *delimiter* *text*
1717
1818
## See also
1919

docs/assembler/masm/db.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Allocates and optionally initializes a byte of storage for each *initializer*. *
1111

1212
## Syntax
1313

14-
> [[*name*]] **DB** *initializer* [[, *initializer*]] ...
14+
> *name* **DB** *initializer* , *initializer* ...
1515
1616
## Remarks
1717

docs/assembler/masm/dd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Allocates and optionally initializes a double word (4 bytes) of storage for each
1111

1212
## Syntax
1313

14-
> [[*name*]] **DD** *initializer* [[, *initializer*]]...
14+
> *name* **DD** *initializer* , *initializer*...
1515
1616
## Remarks
1717

docs/assembler/masm/df.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Allocates and optionally initializes 6 bytes of storage for each *initializer*.
1111

1212
## Syntax
1313

14-
> [[*name*]] **DF** *initializer* [[, *initializer*]]...
14+
> *name* **DF** *initializer* , *initializer*...
1515
1616
## Remarks
1717

docs/assembler/masm/dot-break.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Generates code to terminate a [.WHILE](../../assembler/masm/dot-while.md) or [.R
1111

1212
## Syntax
1313

14-
> **.BREAK** [[**.IF** *condition*]]
14+
> **.BREAK** **.IF** *condition*
1515
1616
## See also
1717

0 commit comments

Comments
 (0)