diff options
-rw-r--r-- | static/panes/pane.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/panes/pane.ts b/static/panes/pane.ts index 205c9facb..8917fef9f 100644 --- a/static/panes/pane.ts +++ b/static/panes/pane.ts @@ -183,7 +183,7 @@ export abstract class Pane<E extends monaco.editor.IEditor, S extends {}> { * view is attached to. This can be done with a simple check. * * ```ts - * if (this.compilerInfo.compilerId === id) { ... } + * if (this.compilerInfo.compilerId === compilerId) { ... } * ``` * * @param compilerId Id of the compiler that had a compilation |