diff --git a/doc/classes/ArrayMesh.xml b/doc/classes/ArrayMesh.xml index 3f8388a04df..1cbcc143ac2 100644 --- a/doc/classes/ArrayMesh.xml +++ b/doc/classes/ArrayMesh.xml @@ -172,7 +172,7 @@ - Default value used for index_array_len when no indices are present. + Value used internally when no indices are present. Amount of weights/bone indices per vertex (always 4). diff --git a/doc/classes/EditorFileSystem.xml b/doc/classes/EditorFileSystem.xml index 3af3f07a1b5..f5e7908932d 100644 --- a/doc/classes/EditorFileSystem.xml +++ b/doc/classes/EditorFileSystem.xml @@ -39,7 +39,7 @@ - Returns [code]true[/code] of the filesystem is being scanned. + Returns [code]true[/code] if the filesystem is being scanned. diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index e5f871099e4..6a67bd8c115 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -392,7 +392,7 @@ Returns [code]true[/code] if the physics interpolated flag is set for this Node (see [member physics_interpolation_mode]). - [b]Note:[/b] Interpolation will only be active is both the flag is set [b]and[/b] physics interpolation is enabled within the [SceneTree]. This can be tested using [method is_physics_interpolated_and_enabled]. + [b]Note:[/b] Interpolation will only be active if both the flag is set [b]and[/b] physics interpolation is enabled within the [SceneTree]. This can be tested using [method is_physics_interpolated_and_enabled]. diff --git a/doc/classes/PopupMenu.xml b/doc/classes/PopupMenu.xml index 088b8b997b8..42442f81690 100644 --- a/doc/classes/PopupMenu.xml +++ b/doc/classes/PopupMenu.xml @@ -249,7 +249,7 @@ - Returns the tooltip associated with the specified index index [code]idx[/code]. + Returns the tooltip associated with the specified index [code]idx[/code]. diff --git a/doc/classes/RichTextLabel.xml b/doc/classes/RichTextLabel.xml index 1244bdafa64..0cbb317055f 100644 --- a/doc/classes/RichTextLabel.xml +++ b/doc/classes/RichTextLabel.xml @@ -430,7 +430,7 @@ The default text font. - The background The background used when the [RichTextLabel] is focused. + The background used when the [RichTextLabel] is focused. The normal background for the [RichTextLabel]. diff --git a/modules/enet/doc_classes/NetworkedMultiplayerENet.xml b/modules/enet/doc_classes/NetworkedMultiplayerENet.xml index aaeba82d4b2..b108bbe924a 100644 --- a/modules/enet/doc_classes/NetworkedMultiplayerENet.xml +++ b/modules/enet/doc_classes/NetworkedMultiplayerENet.xml @@ -125,7 +125,7 @@ When set to an empty string, the [code]address[/code] parameter passed to [method create_client] is used instead. - Enable or disable certificate verification when [member use_dtls] [code]true[/code]. + Enable or disable certificate verification when [member use_dtls] is [code]true[/code]. diff --git a/modules/gdnative/doc_classes/VideoStreamGDNative.xml b/modules/gdnative/doc_classes/VideoStreamGDNative.xml index db518adfead..6d1157914d5 100644 --- a/modules/gdnative/doc_classes/VideoStreamGDNative.xml +++ b/modules/gdnative/doc_classes/VideoStreamGDNative.xml @@ -1,10 +1,10 @@ - [VideoStream] resource for for video formats implemented via GDNative. + [VideoStream] resource for video formats implemented via GDNative. - [VideoStream] resource for for video formats implemented via GDNative. + [VideoStream] resource for video formats implemented via GDNative. It can be used via [url=https://github.com/KidRigger/godot-videodecoder]godot-videodecoder[/url] which uses the [url=https://ffmpeg.org]FFmpeg[/url] library. diff --git a/modules/visual_script/visual_script_func_nodes.cpp b/modules/visual_script/visual_script_func_nodes.cpp index b1d8baa9b58..0affba43c38 100644 --- a/modules/visual_script/visual_script_func_nodes.cpp +++ b/modules/visual_script/visual_script_func_nodes.cpp @@ -2166,7 +2166,7 @@ public: Node *another = node->get_node(node_path); if (!another) { r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD; - r_error_str = RTR("Path does not lead Node!"); + r_error_str = RTR("Path does not lead to Node!"); return 0; } diff --git a/modules/webxr/doc_classes/WebXRInterface.xml b/modules/webxr/doc_classes/WebXRInterface.xml index ade519b9a8d..cf58d837ece 100644 --- a/modules/webxr/doc_classes/WebXRInterface.xml +++ b/modules/webxr/doc_classes/WebXRInterface.xml @@ -256,7 +256,7 @@ - We don't know the the target ray mode. + We don't know the target ray mode. Target ray originates at the viewer's eyes and points in the direction they are looking. diff --git a/servers/visual/shader_language.cpp b/servers/visual/shader_language.cpp index ebdd618bf09..edb8a7514e4 100644 --- a/servers/visual/shader_language.cpp +++ b/servers/visual/shader_language.cpp @@ -2893,14 +2893,14 @@ bool ShaderLanguage::_validate_varying_assign(ShaderNode::Varying &p_varying, St case ShaderNode::Varying::STAGE_VERTEX_TO_FRAGMENT_LIGHT: case ShaderNode::Varying::STAGE_VERTEX: if (current_function == String("fragment")) { - *r_message = RTR("Varyings which assigned in 'vertex' function may not be reassigned in 'fragment' or 'light'."); + *r_message = RTR("Varyings which were assigned in 'vertex' function may not be reassigned in 'fragment' or 'light'."); return false; } break; case ShaderNode::Varying::STAGE_FRAGMENT_TO_LIGHT: case ShaderNode::Varying::STAGE_FRAGMENT: if (current_function == String("vertex")) { - *r_message = RTR("Varyings which assigned in 'fragment' function may not be reassigned in 'vertex' or 'light'."); + *r_message = RTR("Varyings which were assigned in 'fragment' function may not be reassigned in 'vertex' or 'light'."); return false; } break;