summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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[] {