mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 17:11:30 +00:00
Fix typos with codespell
Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt`
Whitelist consists of:
```
ang
doubleclick
lod
nd
que
te
unselect
```
(cherry picked from commit 612ab4bbc6)
This commit is contained in:
parent
40018e995c
commit
751806b5c7
55 changed files with 82 additions and 82 deletions
|
|
@ -2182,7 +2182,7 @@ void VisualScriptInstance::create(const Ref<VisualScript> &p_script, Object *p_o
|
|||
Ref<VisualScriptNode> node = F->get().node;
|
||||
VisualScriptNodeInstance *instance = instances[F->key()];
|
||||
|
||||
// conect to default values
|
||||
// connect to default values
|
||||
for (int i = 0; i < instance->input_port_count; i++) {
|
||||
if (instance->input_ports[i] == -1) {
|
||||
|
||||
|
|
@ -2192,7 +2192,7 @@ void VisualScriptInstance::create(const Ref<VisualScript> &p_script, Object *p_o
|
|||
}
|
||||
}
|
||||
|
||||
// conect to trash
|
||||
// connect to trash
|
||||
for (int i = 0; i < instance->output_port_count; i++) {
|
||||
if (instance->output_ports[i] == -1) {
|
||||
instance->output_ports[i] = function.trash_pos; //trash is same for all
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue