@@ -205,12 +205,12 @@ Each item defines a snippet for users that VS Code will surface as part of Intel
205205
206206Every snippet must define either the `body` or `bodyText` property, which VS Code uses
207207to insert the snippet into the data file. If you specify both `body` and `bodyText`, the
208- value for `body` supercedes the value for `bodyText`.
208+ value for `body` supersedes the value for `bodyText`.
209209
210210The `description`, and `markdownDescription` properties provide documentation for the
211211snippet and are displayed in the hover text when a user selects the snippet. If you
212212specify both `description` and `markdownDescription`, the text for
213- `markdownDescription` supercedes the text for `description`.
213+ `markdownDescription` supersedes the text for `description`.
214214
215215The `label` property defines a short name for the snippet. If the snippet doesn't define
216216the `label` property, VS Code shows a stringified representation of the snippet instead.
@@ -430,7 +430,7 @@ keywords and fails those validations.
430430- When the data includes a property that isn't evaluated by any keywords and the schema
431431defines `unevaluatedProperties` as `false`.
432432
433- The value for the `errorMessage` keyword supercedes all default messages for the schema
433+ The value for the `errorMessage` keyword supersedes all default messages for the schema
434434or subschema where you define the keyword. You can provide per-validation failure
435435messages by defining the validating keywords in separate entries of the `allOf` keyword
436436and defining the `errorMessage` keyword for each entry.
@@ -449,7 +449,7 @@ without converting any apparent markup.
449449
450450You can define the `markdownDescription` keyword to provide descriptive text as markdown,
451451including links and code blocks. When a schema or subschema defines the
452- `markdownDescription` keyword, that value supercedes any defined text in the `description`
452+ `markdownDescription` keyword, that value supersedes any defined text in the `description`
453453keyword.
454454
455455You can also use the `markdownEnumDescriptions` keyword to document the values defined
@@ -475,7 +475,7 @@ the `enum` keyword, VS Code displays the text from the `description` or
475475`markdownEnumDescriptions` keyword to define documentation for each enum value.
476476
477477When a schema or subschema defines the `markdownEnumDescriptions` keyword, that value
478- supercedes any defined text in the `description`, `markdownDescription`, or
478+ supersedes any defined text in the `description`, `markdownDescription`, or
479479`enumDescriptions` keywords.
480480
481481The keyword expects an array of strings. VS Code correlates the items in the
0 commit comments