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
+2 -2
View File
@@ -32,9 +32,9 @@ Tests will only test against entries in `[output]` that were specified.
## Writing autocompletion tests
To avoid failing edge cases a certain behaviour needs to be tested multiple times. Some things that tests should account for:
To avoid failing edge cases a certain behavior needs to be tested multiple times. Some things that tests should account for:
- All possible types: Test with all possible types that apply to the tested behaviour. (For the last points testing against `SCRIPT` and `CLASS` should suffice. `CLASS` can be obtained through C#, `SCRIPT` through GDScript. Relying on autoloads to be of type `SCRIPT` is not good, since this might change in the future.)
- All possible types: Test with all possible types that apply to the tested behavior. (For the last points testing against `SCRIPT` and `CLASS` should suffice. `CLASS` can be obtained through C#, `SCRIPT` through GDScript. Relying on autoloads to be of type `SCRIPT` is not good, since this might change in the future.)
- `BUILTIN`
- `NATIVE`