diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-07 10:05:42 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-07 10:08:42 +0200 |
commit | 4b070e803131b144737881ac262f25d7700c503d (patch) | |
tree | dad83fd003911fb0fa66661de44c172f5abd9228 /core/extension | |
parent | 107fd30ae7bbf0a1bacc6f461231b3c31e94a7de (diff) | |
download | redot-engine-4b070e803131b144737881ac262f25d7700c503d.tar.gz |
Fix various typos with codespell
Using 2.2.7.dev217+g10c2abcf.
Had to add `colour` to the ignore list as we used it as an alias/keyword for the
documentation of color-related APIs.
Also ignore recommendations to change `thirdparty` to either `third-party` or
`third party`, which are correct but we use the former fairly consistently.
Diffstat (limited to 'core/extension')
-rw-r--r-- | core/extension/gdextension_interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/extension/gdextension_interface.h b/core/extension/gdextension_interface.h index bfe592cb4e..6fe6b8df20 100644 --- a/core/extension/gdextension_interface.h +++ b/core/extension/gdextension_interface.h @@ -2875,7 +2875,7 @@ typedef void (*GDExtensionInterfaceEditorRemovePlugin)(GDExtensionConstStringNam * * The provided pointer can be immediately freed once the function returns. * - * @param p_data A pointer to an UTF-8 encoded C string (null terminated). + * @param p_data A pointer to a UTF-8 encoded C string (null terminated). */ typedef void (*GDExtensionsInterfaceEditorHelpLoadXmlFromUtf8Chars)(const char *p_data); @@ -2887,7 +2887,7 @@ typedef void (*GDExtensionsInterfaceEditorHelpLoadXmlFromUtf8Chars)(const char * * * The provided pointer can be immediately freed once the function returns. * - * @param p_data A pointer to an UTF-8 encoded C string. + * @param p_data A pointer to a UTF-8 encoded C string. * @param p_size The number of bytes (not code units). */ typedef void (*GDExtensionsInterfaceEditorHelpLoadXmlFromUtf8CharsAndLen)(const char *p_data, GDExtensionInt p_size); |