Skip to content

Commit

Permalink
Fixed some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomi Ollila authored and johanmalm committed Jan 4, 2024
1 parent 6cf19d1 commit 785a34e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/labwc-actions.5.scd
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion include/labwc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/common/nodename.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
4 changes: 2 additions & 2 deletions src/config/session.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/input/cursor.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down Expand Up @@ -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
*/
Expand Down

0 comments on commit 785a34e

Please sign in to comment.