Skip to content

Commit

Permalink
Fix syntax error in x-ms-identifiers documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Shen <[email protected]>
  • Loading branch information
mjlshen committed Apr 5, 2024
1 parent 79a00e5 commit 971f4b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Check that array properties have `x-ms-identifiers` specified with `@OpenAPI.ext
#### ❌ Incorrect

```tsp
model Address [] {
model Address {
city: string;
street: string;
}
model ResourceProperties {
array: Address[]
array: Address[];
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Check that array properties have `x-ms-identifiers` specified with `@OpenAPI.ext
#### ❌ Incorrect

```tsp
model Address [] {
model Address {
city: string;
street: string;
}
model ResourceProperties {
array: Address[]
array: Address[];
}
```

Expand Down

0 comments on commit 971f4b0

Please sign in to comment.