1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

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>
This commit is contained in:
Rémi Verschelde
2024-02-07 11:09:28 +01:00
parent 08eaeff640
commit 7223c5b54a
7 changed files with 10 additions and 10 deletions

View File

@@ -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,
),