diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-07 11:09:28 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-07 11:09:34 +0100 |
commit | 7223c5b54a7958fe8f8176bafe5ea415f0c514a6 (patch) | |
tree | 356bb60754ce9a90d84805581489a896b7e8f939 /modules/gdscript/tests | |
parent | 08eaeff6402b92d3df4268321ee1ceea8f2bfd5a (diff) | |
download | redot-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 'modules/gdscript/tests')
-rw-r--r-- | modules/gdscript/tests/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/tests/README.md b/modules/gdscript/tests/README.md index cea251bab5..72b5316532 100644 --- a/modules/gdscript/tests/README.md +++ b/modules/gdscript/tests/README.md @@ -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` |