summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CodeParser.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/CodeParser/CodeParser.ts')
-rw-r--r--src/CodeParser/CodeParser.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/CodeParser/CodeParser.ts b/src/CodeParser/CodeParser.ts
index 5d0d0bf..cc2c709 100644
--- a/src/CodeParser/CodeParser.ts
+++ b/src/CodeParser/CodeParser.ts
@@ -4,7 +4,6 @@ export default interface ICodeParser {
/**
* @param {TextEditor} activeEditor The open active Editor where the event came from
- * @param {TextDocumentContentChangeEvent} event Something in the document changed
*/
- Parse(activeEditor: TextEditor, event: TextDocumentContentChangeEvent);
+ Parse(activeEditor: TextEditor);
}