1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-11-27 22:38:10 +02:00

fixing types

This commit is contained in:
Patrik J. Braun
2020-01-28 21:46:27 +01:00
parent 4e3f464cf8
commit 3a347c13e2
2 changed files with 10 additions and 10 deletions

View File

@@ -348,7 +348,7 @@ gulp.task('generate-man', async (cb) => {
let txt = '# Pigallery 2 man page\n';
txt += 'pigallery2 uses [typeconfig](https://github.com/bpatrik/typeconfig) for configuration\n\n';
txt += '`npm start -- --help` prints the following:\n\n';
txt += '```bash\n' + ConfigClassBuilder.attachPrivateInterface(Config).__printMan() + '```';
txt += '```\n' + ConfigClassBuilder.attachPrivateInterface(Config).__printMan() + '```';
await fsp.writeFile('MANPAGE.md', txt);
cb();
});