]> git.sur5r.net Git - i3/i3/commitdiff
Fix typo: childs -> children 3433/head
authorOrestis Floros <orestisf1993@gmail.com>
Wed, 10 Oct 2018 15:31:03 +0000 (18:31 +0300)
committerOrestis Floros <orestisf1993@gmail.com>
Sat, 13 Oct 2018 18:10:11 +0000 (21:10 +0300)
i3-nagbar/main.c
include/startup.h
src/randr.c
src/startup.c
src/x.c

index fd7acd6e734215b319d53ecea18e6eed777ba3ae..4ce7493961caf7ed5e35674cbc441843aed0d1eb 100644 (file)
@@ -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.
index 5da221e1679ca364da489db753145f0eb32266c8..feece575c36f8a9d8361fdb08ef81b5b1a01ce43 100644 (file)
@@ -21,7 +21,7 @@
  * 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 :-).
+ * correctly handles children, so we don’t have to do it :-).
  *
  * The shell used to start applications is the system's bourne shell (i.e.,
  * /bin/sh).
index 54d61dddbeaa28bd496b65ec907616ebeb52605d..6bb8d9e649e5137f08da46c1db9e2c35747e4184 100644 (file)
@@ -550,7 +550,7 @@ static void output_change_mode(xcb_connection_t *conn, Output *output) {
     }
 
     /* If default_orientation is NO_ORIENTATION, we change the orientation of
-     * the workspaces and their childs depending on output resolution. This is
+     * the workspaces and their children depending on output resolution. This is
      * only done for workspaces with maximum one child. */
     if (config.default_orientation == NO_ORIENTATION) {
         TAILQ_FOREACH(workspace, &(content->nodes_head), nodes) {
index f4ba85d8681624e10685849c386065698a0b6ee9..6302d811e3b4b3688ff59cc8bbfe7108edcfc390 100644 (file)
@@ -118,10 +118,10 @@ void startup_sequence_delete(struct Startup_Sequence *sequence) {
 }
 
 /*
- * 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 used to start applications is the system's bourne shell (i.e.,
  * /bin/sh).
diff --git a/src/x.c b/src/x.c
index c68b9ccd5f1541d511101e58fd4dab20ecd1690f..6a0170a5699be528dd17b67b05cf13396400edc5 100644 (file)
--- a/src/x.c
+++ b/src/x.c
@@ -509,7 +509,7 @@ void x_draw_decoration(Con *con) {
 
         /* These rectangles represent the border around the child window
          * (left, bottom and right part). We don’t just fill the whole
-         * rectangle because some childs are not freely resizable and we want
+         * rectangle because some children are not freely resizable and we want
          * their background color to "shine through". */
         if (!(borders_to_hide & ADJ_LEFT_SCREEN_EDGE)) {
             draw_util_rectangle(&(con->frame_buffer), p->color->child_border, 0, 0, br.x, r->height);