From 0b1b8bbb15cbff8dcbefd2ef5252de8548d1f69b Mon Sep 17 00:00:00 2001 From: Alexandr Alexandrovich <72607301+kulkesk@users.noreply.github.com> Date: Thu, 13 Jul 2023 14:25:44 +0400 Subject: [PATCH] Update daemonize.nim Fixing comment in `daemonize` template, fixing a typo and making text describing `se` parameter more descriptive --- daemonize.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemonize.nim b/daemonize.nim index a21ba1c..55b01f1 100644 --- a/daemonize.nim +++ b/daemonize.nim @@ -24,7 +24,7 @@ template daemonize*(pidfile, si, so, se, cd: string,body: typed): void = ## pidfile: path to file where pid will be stored ## si: standard input for daemonzied process ## so: standard output for daemonzied process - ## se: standard ouput for daemonzied process + ## se: standard error output for daemonzied process ## cd: directory to switch to, nil or empty to stay if fileExists(pidfile):