diff options
| author | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-10-15 03:38:13 +0200 |
|---|---|---|
| committer | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-10-15 03:38:13 +0200 |
| commit | 87ca9071ad68251156fa1fab5fc60603309a4f32 (patch) | |
| tree | 84fe71874b49a1203cccf711e2298a23999ed5bc | |
| parent | bb8524924007367b331a1bac27808f2d9796dc55 (diff) | |
| download | doxdocgen-87ca9071ad68251156fa1fab5fc60603309a4f32.tar.gz | |
-- Fixed bad newline in constructor of CGen.
| -rw-r--r-- | src/DocGen/CGen.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/DocGen/CGen.ts b/src/DocGen/CGen.ts index 0f8ce52..edeb152 100644 --- a/src/DocGen/CGen.ts +++ b/src/DocGen/CGen.ts @@ -32,8 +32,7 @@ export default class CGen implements IDocGen { */ public constructor( actEdit: TextEditor, - cursorPosition: - Position, + cursorPosition: Position, param: string[], tparam: string[], returnVals: string[], |