diff options
| author | Christoph Schlosser <christoph@linux.com> | 2018-03-01 20:14:57 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-03-02 20:24:28 +0100 |
| commit | 38d30af3dec7c1f6b80aeced8d465690395e08e1 (patch) | |
| tree | c073ab2b46fa650b2784e3462a5da3485d367a77 /src/Config.ts | |
| parent | 516675facd3c16bd2f42f78783a1da0f9c9e1866 (diff) | |
| download | doxdocgen-38d30af3dec7c1f6b80aeced8d465690395e08e1.tar.gz | |
Add tests and fix default smart text
Diffstat (limited to 'src/Config.ts')
| -rw-r--r-- | src/Config.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Config.ts b/src/Config.ts index 3c589f5..e3740b0 100644 --- a/src/Config.ts +++ b/src/Config.ts @@ -56,7 +56,7 @@ export class Config { public dateTemplate: string = "@date {date}"; public dateFormat: string = "YYYY-MM-DD"; public fileOrder: string[] = ["brief", "file", "author", "date"]; - public ctorText: string = "YYYY-MM-DD"; - public dtorText: string = "YYYY-MM-DD"; + public ctorText: string = "Construct a new {name} object"; + public dtorText: string = "Destroy the {name} object"; public generateSmartText: boolean = true; } |