summaryrefslogtreecommitdiffstats
path: root/src/Lang/Cpp
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2019-06-28 23:13:09 +0200
committerChristoph Schlosser <christoph@linux.com>2019-06-28 23:13:09 +0200
commitb4193c57675c394af91aeb745e6e8175ca827a01 (patch)
tree1c6220f27b1f216bbff50c5a8786c1966b3b96ef /src/Lang/Cpp
parent1d863f634d197c786904e9d4ea87a556f9859af9 (diff)
downloaddoxdocgen-b4193c57675c394af91aeb745e6e8175ca827a01.tar.gz
Fix brief and add tests
Diffstat (limited to 'src/Lang/Cpp')
-rw-r--r--src/Lang/Cpp/CppDocGen.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Lang/Cpp/CppDocGen.ts b/src/Lang/Cpp/CppDocGen.ts
index 1c00546..5d2483f 100644
--- a/src/Lang/Cpp/CppDocGen.ts
+++ b/src/Lang/Cpp/CppDocGen.ts
@@ -216,8 +216,8 @@ export class CppDocGen implements IDocGen {
}
protected generateBrief(lines: string[]) {
- lines.push(this.getTemplatedString(this.cfg.textTemplateReplace,
- this.cfg.C.commentPrefix + this.cfg.Generic.briefTemplate,
+ lines.push(this.cfg.C.commentPrefix + this.getTemplatedString(this.cfg.textTemplateReplace,
+ this.cfg.Generic.briefTemplate,
this.getSmartText()));
}