Fix monaco

This commit is contained in:
Matt Bierner 2021-08-11 18:33:44 -07:00
parent 99c7f308f7
commit 6dafff7b3a
No known key found for this signature in database
GPG key ID: 099C331567E11888
2 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@ export interface IEditorOptions {
/**
* Control the rendering of line numbers.
* If it is a function, it will be invoked when rendering a line number and the return value will be rendered.
* Otherwise, if it is a truey, line numbers will be rendered normally (equivalent of using an identity function).
* Otherwise, if it is a truthy, line numbers will be rendered normally (equivalent of using an identity function).
* Otherwise, line numbers will not be rendered.
* Defaults to `on`.
*/
@ -714,7 +714,7 @@ export interface IDiffEditorOptions extends IEditorOptions {
*/
originalAriaLabel?: string;
/**
* Aria label for modifed editor.
* Aria label for modified editor.
*/
modifiedAriaLabel?: string;
}

View file

@ -134,7 +134,7 @@ export class Range {
}
/**
* Test if `otherRange` is strinctly in `range` (must start after, and end before). If the ranges are equal, will return false.
* Test if `otherRange` is strictly in `range` (must start after, and end before). If the ranges are equal, will return false.
*/
public static strictContainsRange(range: IRange, otherRange: IRange): boolean {
if (otherRange.startLineNumber < range.startLineNumber || otherRange.endLineNumber < range.startLineNumber) {