You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +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 ```
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user