More codespell fixes, do more changes from previous ignore list

This commit is contained in:
Rémi Verschelde 2023-02-01 10:49:05 +01:00
parent c40020513a
commit e52213e2fa
No known key found for this signature in database
GPG key ID: C3336907360768E1
16 changed files with 64 additions and 64 deletions

View file

@ -553,11 +553,11 @@
[b]Note:[/b] If the user has disabled the recycle bin on their system, the file will be permanently deleted instead.
[codeblocks]
[gdscript]
var file_to_remove = "user://slot1.sav"
var file_to_remove = "user://slot1.save"
OS.move_to_trash(ProjectSettings.globalize_path(file_to_remove))
[/gdscript]
[csharp]
var fileToRemove = "user://slot1.sav";
var fileToRemove = "user://slot1.save";
OS.MoveToTrash(ProjectSettings.GlobalizePath(fileToRemove));
[/csharp]
[/codeblocks]