File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1308,7 +1308,7 @@ export class CodeEditorWidget extends Disposable implements editorBrowser.ICodeE
1308
1308
for ( const decorationOption of decorationOptions ) {
1309
1309
let typeKey = decorationTypeKey ;
1310
1310
if ( decorationOption . renderOptions ) {
1311
- // identify custom reder options by a hash code over all keys and values
1311
+ // identify custom render options by a hash code over all keys and values
1312
1312
// For custom render options register a decoration type if necessary
1313
1313
const subType = hash ( decorationOption . renderOptions ) . toString ( 16 ) ;
1314
1314
// The fact that `decorationTypeKey` appears in the typeKey has no influence
Original file line number Diff line number Diff line change @@ -116,15 +116,15 @@ export class CursorColumns {
116
116
}
117
117
118
118
/**
119
- * ATTENTION: This works with 0-based columns (as oposed to the regular 1-based columns)
119
+ * ATTENTION: This works with 0-based columns (as opposed to the regular 1-based columns)
120
120
* @see {@link CursorColumns }
121
121
*/
122
122
public static nextRenderTabStop ( visibleColumn : number , tabSize : number ) : number {
123
123
return visibleColumn + tabSize - visibleColumn % tabSize ;
124
124
}
125
125
126
126
/**
127
- * ATTENTION: This works with 0-based columns (as oposed to the regular 1-based columns)
127
+ * ATTENTION: This works with 0-based columns (as opposed to the regular 1-based columns)
128
128
* @see {@link CursorColumns }
129
129
*/
130
130
public static nextIndentTabStop ( visibleColumn : number , indentSize : number ) : number {
You can’t perform that action at this time.
0 commit comments