summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd/wayland
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-02-07 11:09:28 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-02-07 11:09:34 +0100
commit7223c5b54a7958fe8f8176bafe5ea415f0c514a6 (patch)
tree356bb60754ce9a90d84805581489a896b7e8f939 /platform/linuxbsd/wayland
parent08eaeff6402b92d3df4268321ee1ceea8f2bfd5a (diff)
downloadredot-engine-7223c5b54a7958fe8f8176bafe5ea415f0c514a6.tar.gz
Fix various typos with codespell
Using 2.2.7.dev115+g0eb441d6. Had to add `cancelled` to the ignore list, as it's a Wayland signal which we're handling in our code, so we don't want codespell to fix that "typo". Also includes the typo fix from #87927. Co-authored-by: Divyanshu Shekhar <61140213+divshekhar@users.noreply.github.com>
Diffstat (limited to 'platform/linuxbsd/wayland')
-rw-r--r--platform/linuxbsd/wayland/SCsub4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/linuxbsd/wayland/SCsub b/platform/linuxbsd/wayland/SCsub
index d2b000ff66..99b7349dbe 100644
--- a/platform/linuxbsd/wayland/SCsub
+++ b/platform/linuxbsd/wayland/SCsub
@@ -19,7 +19,7 @@ if env["use_sowrap"]:
"WAYLAND_API_CODE": Builder(
action=Action(
"wayland-scanner -c private-code < ${SOURCE} | sed 's:wayland-util\.h:../dynwrappers/wayland-client-core-so_wrap\.h:' > ${TARGET}",
- 'Generating Wayland protocol marshalling code: "${TARGET}"',
+ 'Generating Wayland protocol marshaling code: "${TARGET}"',
),
single_source=True,
),
@@ -37,7 +37,7 @@ else:
"WAYLAND_API_CODE": Builder(
action=Action(
"wayland-scanner -c private-code < ${SOURCE} > ${TARGET}",
- 'Generating Wayland protocol marshalling code: "${TARGET}"',
+ 'Generating Wayland protocol marshaling code: "${TARGET}"',
),
single_source=True,
),