]> git.mdlowis.com Git - proto/labwc.git/commitdiff
Fixed some typos
authorTomi Ollila <tomi.ollila@iki.fi>
Thu, 4 Jan 2024 17:42:26 +0000 (19:42 +0200)
committerJohan Malm <johanmalm@users.noreply.github.com>
Thu, 4 Jan 2024 19:32:51 +0000 (19:32 +0000)
NEWS.md
docs/labwc-actions.5.scd
include/labwc.h
src/common/nodename.c
src/config/session.c
src/input/cursor.c
src/output.c

diff --git a/NEWS.md b/NEWS.md
index cdcb56202ea98c778b436eabee1df7368b519211..d73ce6a155b037b7512aa8bb3bad2fe7f7c4e14c 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -577,7 +577,7 @@ reported, tested and fixed issues. Particular mentions go to @bi4k8,
   into account exclusive layer-shell clients. Written-by: @Consolatis
 - Restore natural geometry when moving tiled/maximized window
   Fixes #391. Written-by: @Consolatis
-- Improve action implementation to take a list of arguments in preperation
+- Improve action implementation to take a list of arguments in preparation
   for actions with multiple arguments. Written-by: @Consolatis
 
 ### Fixed
@@ -863,7 +863,7 @@ Compile with wlroots 0.13.0
 
 ### Added
 
-- Support wlr-output-management protcol for setting output position, scale
+- Support wlr-output-management protocol for setting output position, scale
   and orientation with kanshi or similar
 - Support server side decoration rounded corners
 - Change built-in theme to match default GTK style
index 6558d0fc01c2b74b02f33f6d40333ce113cd1c03..20f057642e373d09c75982d63ac8f8be5f017239 100644 (file)
@@ -189,7 +189,7 @@ Actions are used in menus and keyboard/mouse bindings.
        effectively sharing only the region of the screen.
 
        It must be noted that overlaying virtual output and real output is not
-       endorsed or explicitely supported by wlroots. For example, after configuring
+       endorsed or explicitly supported by wlroots. For example, after configuring
        virtual output, real output must be reconfigured as well (for the overlay
        configuration to work correctly). This is the example configuration:
 
index 88dfbec52aeff2a60796a7ff01fe195f65cd8e56..7c409f6089c0771c5ed16c99fbd3cc0a5fe62e41 100644 (file)
@@ -72,7 +72,7 @@ struct input {
 
 /*
  * Virtual keyboards should not belong to seat->keyboard_group. As a result we
- * need to be able to ascertain which wlr_keyboard key/modifer events come from
+ * need to be able to ascertain which wlr_keyboard key/modifier events come from
  * and we achieve that by using `struct keyboard` which inherits `struct input`
  * and adds keybord specific listeners and a wlr_keyboard pointer.
  */
index 3c6e2446903a2d04657d994f44e46581cc1e3e4b..86dfd62025e5a85e01434dd7c7595f261fff8ab9 100644 (file)
@@ -10,7 +10,7 @@ nodename(xmlNode *node, char *buf, int len)
                return NULL;
        }
 
-       /* Ignore superflous 'text.' in node name */
+       /* Ignore superfluous 'text.' in node name */
        if (node->parent && !strcmp((char *)node->name, "text")) {
                node = node->parent;
        }
index b4014dc1f59c6ec4e9b86c9deb066c6724f096d1..00fbabafa8192fc7292aa2df043363f492604dbc 100644 (file)
@@ -100,7 +100,7 @@ session_environment_init(const char *dir)
 {
        /*
         * Set default for XDG_CURRENT_DESKTOP so xdg-desktop-portal-wlr is happy.
-        * May be overriden either by already having a value set or by the user
+        * May be overridden either by already having a value set or by the user
         * supplied environment file.
         */
        setenv("XDG_CURRENT_DESKTOP", "wlroots", 0);
@@ -109,7 +109,7 @@ session_environment_init(const char *dir)
         * Set default for _JAVA_AWT_WM_NONREPARENTING so that Java applications
         * such as JetBrains/Intellij Idea do render blank windows and menus
         * with incorrect offset. See https://github.com/swaywm/sway/issues/595
-        * May be overriden either by already having a value set or by the user
+        * May be overridden either by already having a value set or by the user
         * supplied environment file.
         */
        setenv("_JAVA_AWT_WM_NONREPARENTING", "1", 0);
index 2d1df6b029a3ef2f24fe8d2cf548c7e678353c2a..ca50a8cea7af56144272d2c513b9782ff2a1222d 100644 (file)
@@ -944,7 +944,7 @@ cursor_button_press(struct seat *seat, uint32_t button,
                if (ctx.type != LAB_SSD_MENU) {
                        close_menu = true;
                } else if (menu_call_actions(ctx.node)) {
-                       /* Action was successfull, may fail if item just opens a submenu */
+                       /* Action was successful, may fail if item just opens a submenu */
                        close_menu = true;
                }
                return;
index 7f2f5520949a51c93bd2a99d079b337907425add..d34e844aa9b800bdd74c4f8916095d8bb4ba85a2 100644 (file)
@@ -205,7 +205,7 @@ new_output_notify(struct wl_listener *listener, void *data)
 
        /*
         * Configures the output created by the backend to use our allocator
-        * and our renderer. Must be done once, before commiting the output
+        * and our renderer. Must be done once, before committing the output
         */
        if (!wlr_output_init_render(wlr_output, server->allocator,
                        server->renderer)) {
@@ -492,7 +492,7 @@ handle_output_manager_apply(struct wl_listener *listener, void *data)
 }
 
 /*
- * Take the way outputs are currently configured/layed out and turn that into
+ * Take the way outputs are currently configured/laid out and turn that into
  * a struct that we send to clients via the wlr_output_configuration v1
  * interface
  */