diff options
| author | Christoph Schlosser <christoph@linux.com> | 2018-02-24 10:49:33 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-02-24 11:30:16 +0100 |
| commit | be90733062442e3be3b5e9ba42d92a43fe558a5c (patch) | |
| tree | e13a3cb0add445d6bb417ccc73e256982de8b2b1 | |
| parent | bba53b05a85e4ccad2eca31124ea9d0b80b4e392 (diff) | |
| download | doxdocgen-be90733062442e3be3b5e9ba42d92a43fe558a5c.tar.gz | |
Adapt error text
| -rw-r--r-- | src/Lang/Cpp/CppParser.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Lang/Cpp/CppParser.ts b/src/Lang/Cpp/CppParser.ts index c1a0add..4792e14 100644 --- a/src/Lang/Cpp/CppParser.ts +++ b/src/Lang/Cpp/CppParser.ts @@ -301,7 +301,7 @@ export default class CppParser implements ICodeParser { logicalLine += "\n" + nextLineTxt; } - throw new Error("More then 20 lines were gotten from editor and no end of expression was found."); + throw new Error("More than " + linesToGet + " lines were read from editor and no end of expression was found."); } private Tokenize(expression: string): CppToken[] { |