diff --git a/about/troubleshooting.rst b/about/troubleshooting.rst index 78328b3cc..4a2fb81aa 100644 --- a/about/troubleshooting.rst +++ b/about/troubleshooting.rst @@ -60,7 +60,7 @@ There are several workarounds for this: The editor or project takes a very long time to start ----------------------------------------------------- -When using one of the the Vulkan-based renderers (Forward+ or Forward Mobile), +When using one of the Vulkan-based renderers (Forward+ or Forward Mobile), the first startup is expected to be relatively long. This is because shaders need to be compiled before they can be cached. Shaders also need to be cached again after updating Godot, after updating graphics drivers or after switching diff --git a/contributing/workflow/testing_pull_requests.rst b/contributing/workflow/testing_pull_requests.rst index b2ff55824..f17cdb0dd 100644 --- a/contributing/workflow/testing_pull_requests.rst +++ b/contributing/workflow/testing_pull_requests.rst @@ -69,7 +69,7 @@ to generate a universal download link. - Open the `nightly.link `__ website and paste the URL you just copied into the text field located below the heading **Paste a GitHub link, get a nightly.link!**. After pasting the URL, click **Get links** on the right. - If the the format of the URL you pasted is correct, you should be presented + If the format of the URL you pasted is correct, you should be presented with a page like this: .. image:: img/testing_pull_requests_nightly_link.png diff --git a/tutorials/ui/bbcode_in_richtextlabel.rst b/tutorials/ui/bbcode_in_richtextlabel.rst index c962864cd..1b54aefaa 100644 --- a/tutorials/ui/bbcode_in_richtextlabel.rst +++ b/tutorials/ui/bbcode_in_richtextlabel.rst @@ -277,7 +277,7 @@ Reference - ``[right]{text}[/right]`` * - | **fill** - | Makes ``{text}`` fill the the full width of ``RichTextLabel``. + | Makes ``{text}`` fill the full width of ``RichTextLabel``. | Same as ``[p align=fill]``. - ``[fill]{text}[/fill]`` diff --git a/tutorials/xr/xr_action_map.rst b/tutorials/xr/xr_action_map.rst index a72561b49..cbc61838f 100644 --- a/tutorials/xr/xr_action_map.rst +++ b/tutorials/xr/xr_action_map.rst @@ -330,11 +330,11 @@ Let's finish our configuration: .. image:: img/xr_touch_completed.webp -Each action is bound the the given input or output for both controllers to indicate that we support the action on either controller. +Each action is bound the given input or output for both controllers to indicate that we support the action on either controller. The exception is the movement action which is bound only to the right hand controller. It is likely that we would want to use the left hand thumbstick for a different purpose, say a teleport function. -In developing your game/application you have to account for the possibility that the user changes the binding and binds the movement to the left hand thumbstick. +In developing your game/application you have to account for the possibility that the user changes the binding and binds the movement to the left hand thumbstick. Also note that our shoot and grab boolean actions are linked to inputs of type ``Float``. As mentioned before OpenXR will do conversions between the two, but do read the warning given on that subject earlier in this document.