Skip to content

Commit

Permalink
Fixes #1293: metamodel documentation strings contains unmatched back-…
Browse files Browse the repository at this point in the history
…ticks (#1294)
  • Loading branch information
dbaeumer authored Aug 11, 2023
1 parent 07b9d29 commit 7792b0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions protocol/metaModel.json
Original file line number Diff line number Diff line change
Expand Up @@ -14590,7 +14590,7 @@
"name": "string"
},
"optional": true,
"documentation": "A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples`."
"documentation": "A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples."
}
]
}
Expand Down Expand Up @@ -14623,7 +14623,7 @@
"name": "string"
},
"optional": true,
"documentation": "A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples`."
"documentation": "A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples."
}
]
}
Expand Down Expand Up @@ -14656,7 +14656,7 @@
"kind": "base",
"name": "string"
},
"documentation": "A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples`."
"documentation": "A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples."
}
]
}
Expand Down
6 changes: 3 additions & 3 deletions protocol/src/common/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,21 +149,21 @@ export type TextDocumentFilter = {
language: string;
/** A Uri {@link Uri.scheme scheme}, like `file` or `untitled`. */
scheme?: string;
/** A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples`. */
/** A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples. */
pattern?: string;
} | {
/** A language id, like `typescript`. */
language?: string;
/** A Uri {@link Uri.scheme scheme}, like `file` or `untitled`. */
scheme: string;
/** A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples`. */
/** A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples. */
pattern?: string;
} | {
/** A language id, like `typescript`. */
language?: string;
/** A Uri {@link Uri.scheme scheme}, like `file` or `untitled`. */
scheme?: string;
/** A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples`. */
/** A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples. */
pattern: string;
};

Expand Down

0 comments on commit 7792b0b

Please sign in to comment.