aboutsummaryrefslogtreecommitdiff
path: root/i3-nagbar
diff options
context:
space:
mode:
authorOrestis Floros <orestisf1993@gmail.com>2018-10-10 18:31:03 +0300
committerOrestis Floros <orestisf1993@gmail.com>2018-10-13 21:10:11 +0300
commit07dfb8450bfaf90d86b220b671997d322d325a85 (patch)
tree05c3e4e06c1535dafdaa4e0d62d71310366e8cd4 /i3-nagbar
parent204eefc67975f0ed1afb3b513f8fc4eb2020d2f6 (diff)
downloadi3-07dfb8450bfaf90d86b220b671997d322d325a85.tar.gz
i3-07dfb8450bfaf90d86b220b671997d322d325a85.zip
Fix typo: childs -> children
Diffstat (limited to 'i3-nagbar')
-rw-r--r--i3-nagbar/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/i3-nagbar/main.c b/i3-nagbar/main.c
index fd7acd6e..4ce74939 100644
--- a/i3-nagbar/main.c
+++ b/i3-nagbar/main.c
@@ -103,10 +103,10 @@ void debuglog(char *fmt, ...) {
}
/*
- * Starts the given application by passing it through a shell. We use double fork
- * to avoid zombie processes. As the started application’s parent exits (immediately),
- * the application is reparented to init (process-id 1), which correctly handles
- * childs, so we don’t have to do it :-).
+ * Starts the given application by passing it through a shell. We use double
+ * fork to avoid zombie processes. As the started application’s parent exits
+ * (immediately), the application is reparented to init (process-id 1), which
+ * correctly handles children, so we don’t have to do it :-).
*
* The shell is determined by looking for the SHELL environment variable. If it
* does not exist, /bin/sh is used.