Skip to content

Commit 8c18786

Browse files
authored
Merge pull request #10409 from tetrapod00/no-simply
Simply remove some words
2 parents 0d9e3ac + bd25f58 commit 8c18786

15 files changed

+23
-20
lines changed

contributing/development/handling_compatibility_breakages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ like ``core/math/a_star_grid_2d.compat.inc`` in this case:
100100
101101
#endif // DISABLE_DEPRECATED
102102
103-
Unless the change in compatibility is complex, the compatibility method should simply call the modified method directly,
103+
Unless the change in compatibility is complex, the compatibility method should call the modified method directly,
104104
instead of duplicating that method. Make sure to match the default arguments for that method (in the example above this would be ``false``).
105105

106106
This file should always be placed next to the original file, and have ``.compat.inc`` at the end instead of ``.cpp`` or ``.h``.

tutorials/assets_pipeline/import_process.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ be discarded. After clicking **Reimport**, the chosen parameters will only be
4747
used for this asset and on future reimports.
4848

4949
Changing the import parameters of several assets at the same time is also
50-
possible. Simply select all of them together in the resources dock and the
50+
possible. Select all of them together in the FileSystem dock and the
5151
exposed parameters will apply to all of them when reimporting.
5252

5353
Reimporting multiple assets

tutorials/performance/general_optimization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ algorithms and data structures are the best they can be. Data access should be
226226
local (to make best use of CPU cache), and it can often be better to use compact
227227
storage of data (again, always profile to test results). Often, you precalculate
228228
heavy computations ahead of time. This can be done by performing the computation
229-
when loading a level, by loading a file containing precalculated data or simply
229+
when loading a level, by loading a file containing precalculated data, or
230230
by storing the results of complex calculations into a script constant and
231231
reading its value.
232232

tutorials/platform/web/javascript_bridge.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Can I use my favorite library?
136136
------------------------------
137137

138138
You most likely can. First, you have to
139-
include your library in the page. You can simply customize the
139+
include your library in the page. You can customize the
140140
:ref:`Head Include <doc_javascript_export_options>` during export (see below),
141141
or even :ref:`write your own template <doc_customizing_html5_shell>`.
142142

tutorials/rendering/compositor.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ a :ref:`Camera3D <class_Camera3D>` and apply only to
1212
the Viewport using that camera.
1313

1414
The :ref:`Compositor <class_Compositor>` resource is used to configure
15-
the compositor. To get started, simply create a new compositor on
16-
the appropriate node:
15+
the compositor. To get started, create a new compositor on the appropriate node:
1716

1817
.. image:: img/new_compositor.webp
1918

tutorials/scripting/gdextension/gdextension_cpp_example.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ Now that we've downloaded our prerequisites, it is time to build the C++
9696
bindings.
9797

9898
The repository contains a copy of the metadata for the current Godot release,
99-
but if you need to build these bindings for a newer version of Godot, simply
100-
call the Godot executable:
99+
but if you need to build these bindings for a newer version of Godot, call
100+
the Godot executable:
101101

102102
.. code-block:: none
103103

tutorials/scripting/gdscript/gdscript_advanced.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,5 +525,4 @@ exists is desirable:
525525
if object.has_method("smash"):
526526
object.smash()
527527

528-
Then, simply define that method and anything the rock touches can be
529-
smashed.
528+
Then, define that method and anything the rock touches can be smashed.

tutorials/shaders/shader_reference/shader_functions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3645,7 +3645,7 @@ Bitwise function descriptions
36453645
The returned value will have bits [offset, offset + bits + 1] taken from [0, bits - 1] of ``insert`` and
36463646
all other bits taken directly from the corresponding bits of base.
36473647

3648-
.. note:: If bits is zero, the result will simply be the original value of base.
3648+
.. note:: If bits is zero, the result will be the original value of base.
36493649

36503650
.. warning::
36513651
The result will be undefined if:

tutorials/ui/bbcode_in_richtextlabel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ the Inspector by adding it to the **Markup > Custom Effects** array, or in code
10521052
tag will be left as-is.
10531053

10541054
There is only one function that you need to extend: ``_process_custom_fx(char_fx)``.
1055-
Optionally, you can also provide a custom BBCode identifier simply by adding a member
1055+
Optionally, you can also provide a custom BBCode identifier by adding a member
10561056
name ``bbcode``. The code will check the ``bbcode`` property automatically or will
10571057
use the name of the file to determine what the BBCode tag should be.
10581058

tutorials/ui/custom_gui_controls.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ when:
131131

132132
This function is
133133
:ref:`Control._gui_input() <class_Control_private_method__gui_input>`.
134-
Simply override it in your control. No processing needs to be set.
134+
To use it, override it in your control. No processing needs to be set.
135135

136136
.. tabs::
137137
.. code-tab:: gdscript GDScript

tutorials/xr/introducing_xr_tools.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Installing XR Tools
2626

2727
Continuing on from our project we started in :ref:`doc_setting_up_xr` we want to add in the Godot XR Tools library.
2828
This can be downloaded from the `Godot XR Tools releases page <https://github.com/GodotVR/godot-xr-tools/releases>`_.
29-
Simply find the latest pre-release for Godot 4 and then under assets download the ``godot-xr-tools.zip`` file.
29+
Find the latest release for Godot 4, and under **Assets**, download the
30+
``godot-xr-tools.zip`` file.
3031

3132
Once downloaded unzip the file.
3233
You will notice the files are held within a ``godot-xr-tools`` subfolder.

tutorials/xr/openxr_composition_layers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Adding a composition layer
7272
--------------------------
7373

7474
The second step is adding our composition layer.
75-
We simply add the correct composition layer node as a child node of
75+
We can add the correct composition layer node as a child node of
7676
our :ref:`XROrigin3D <class_xrorigin3d>` node.
7777
This is very important as the XR runtime positions everything in relation to our origin.
7878

@@ -263,7 +263,7 @@ Next we remember our state for next frame.
263263
264264
...
265265
266-
Finally, if we aren't intersecting, we simply clear our state.
266+
Finally, if we aren't intersecting, we clear our state.
267267

268268
.. code:: gdscript
269269

tutorials/xr/openxr_hand_tracking.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ You can access this information through code:
185185
else:
186186
print("No hand tracker registered")
187187
188-
This example simply logs the state for the left hand.
188+
This example logs the state for the left hand.
189189

190190
If in this example no hand tracker is returned by ``get_tracker``,
191191
this means the hand tracking API is not supported on the XR runtime at all.

tutorials/xr/setting_up_xr.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ There are other XR related nodes and there is much more to say about these three
3131
Prerequisites for XR in Godot 4
3232
-------------------------------
3333

34-
While in Godot 3 most things worked out of the box, Godot 4 needs a little more setup. This is mainly due to the more advanced nature of the Vulkan renderer. There are many rendering features in Vulkan the XR system uses that aren't enabled by default. They are very easy to turn on, simply open up your project settings and tick the XR shaders tickbox in the XR section:
34+
While in Godot 3 most things worked out of the box, Godot 4 needs a little more
35+
setup. This is mainly due to the more advanced nature of the Vulkan renderer.
36+
There are many rendering features in Vulkan the XR system uses that aren't
37+
enabled by default. To turn them on, open up your project settings and tick
38+
:ref:`XR > Shaders > Enabled <class_ProjectSettings_property_xr/shaders/enabled>`:
3539

3640
.. image:: img/xr_shaders.png
3741

tutorials/xr/xr_action_map.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Godot will automatically create a default action map if no action map file is fo
5252
It prevents having to design a proper action map for their game/application first.
5353

5454
For this walkthrough we're going to start with a blank action map.
55-
You can simply delete the "Godot action set" entry at the top by pressing the trash can icon.
55+
You can delete the "Godot action set" entry at the top by pressing the trash can icon.
5656
This will clear out all actions.
5757
You might also want to remove the controllers that you do not wish to setup, more on this later.
5858

@@ -257,7 +257,7 @@ Profiles
257257
--------
258258

259259
In OpenXR controller bindings are captured in so-called "Interaction Profiles".
260-
We've simply shortened it to "Profiles" because it takes up less space.
260+
We've shortened it to "Profiles" because it takes up less space.
261261

262262
This generic name is chosen because controllers don't cover the entire system.
263263
Currently there are also profiles for trackers, remotes and tracked pens.

0 commit comments

Comments
 (0)