summaryrefslogtreecommitdiffstats
path: root/src/Lang
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2018-02-24 10:49:33 +0100
committerChristoph Schlosser <christophschlosser@users.noreply.github.com>2018-02-24 11:30:16 +0100
commitbe90733062442e3be3b5e9ba42d92a43fe558a5c (patch)
treee13a3cb0add445d6bb417ccc73e256982de8b2b1 /src/Lang
parentbba53b05a85e4ccad2eca31124ea9d0b80b4e392 (diff)
downloaddoxdocgen-be90733062442e3be3b5e9ba42d92a43fe558a5c.tar.gz
Adapt error text
Diffstat (limited to 'src/Lang')
-rw-r--r--src/Lang/Cpp/CppParser.ts2
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[] {