Fix typos

Signed-off-by: tinyboxvk <13696594+tinyboxvk@users.noreply.github.com>
This commit is contained in:
tinyboxvk 2025-01-08 23:35:23 -04:00 committed by Johan Malm
parent 4ecedcdb3b
commit 1a6dd845a2
23 changed files with 33 additions and 33 deletions

View file

@ -17,7 +17,7 @@ pid_t spawn_primary_client(const char *command);
void spawn_async_no_shell(char const *command);
/**
* spawn_piped - execute asyncronously
* spawn_piped - execute asynchronously
* @command: command to be executed
* @pipe_fd: set to the read end of a pipe
* connected to stdout of the command

View file

@ -477,7 +477,7 @@ struct view *desktop_topmost_focusable_view(struct server *server);
* Toggles the (output local) visibility of the layershell top layer
* based on the existence of a fullscreen window on the current workspace.
*/
void desktop_update_top_layer_visiblity(struct server *server);
void desktop_update_top_layer_visibility(struct server *server);
/**
* desktop_focus_topmost_view() - focus the topmost view on the current

View file

@ -87,7 +87,7 @@ struct menu *menu_get_by_id(struct server *server, const char *id);
* This function will close server->menu_current, open the
* new menu and assign @menu to server->menu_current.
*
* Additionally, server->input_mode wil be set to LAB_INPUT_STATE_MENU.
* Additionally, server->input_mode will be set to LAB_INPUT_STATE_MENU.
*/
void menu_open_root(struct menu *menu, int x, int y);
@ -117,7 +117,7 @@ bool menu_call_actions(struct wlr_scene_node *node);
* This function will close server->menu_current and set it to NULL.
* Asserts that server->input_mode is set to LAB_INPUT_STATE_MENU.
*
* Additionally, server->input_mode wil be set to LAB_INPUT_STATE_PASSTHROUGH.
* Additionally, server->input_mode will be set to LAB_INPUT_STATE_PASSTHROUGH.
*/
void menu_close_root(struct server *server);

View file

@ -74,7 +74,7 @@ void lab_transaction_op_destroy(struct lab_transaction_op *transaction_op);
*/
void lab_resource_addon_destroy(struct lab_wl_resource_addon *addon);
/* Convinience wrappers for looping through the pending transaction ops of a ctx */
/* Convenience wrappers for looping through the pending transaction ops of a ctx */
#define lab_transaction_for_each(transaction_op, ctx) \
wl_list_for_each(transaction_op, &(ctx)->transaction_ops, link)