diff options
author | Mats Larsen <me@supergrecko.com> | 2021-10-14 15:15:16 +0200 |
---|---|---|
committer | Mats Larsen <me@supergrecko.com> | 2021-10-14 15:15:16 +0200 |
commit | 7e873398d30e5d5d981394932d59c170fde7b788 (patch) | |
tree | d45693b8a283acb4ec86f6381abacc1abac8d99b | |
parent | a000af5fb82e61e602289e5d4116468301ecd220 (diff) | |
download | compiler-explorer-gh-1159.tar.gz compiler-explorer-gh-1159.zip |
Fix doc comment examplegh-1159
-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 |