Skip to content

Commit 4dea1cb

Browse files
authored
Merge pull request #11194 from Piralein/needMoreWallE
Fix typo for custom UI roles
2 parents 84f15cd + 2be260e commit 4dea1cb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

getting_started/step_by_step/instancing.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ Double-click the ``project.godot`` file to open it.
6464

6565
.. image:: img/instancing_import_project_file.webp
6666

67-
Finally, click the :button:`Import`` button.
67+
Finally, click the :button:`Import` button.
6868

6969
.. image:: img/instancing_import_and_edit_button.webp
7070

7171
A window notifying you that the project was last opened in an older Godot version
72-
may appear, that's not an issue. Click :button:`Ok`` to open the project.
72+
may appear, that's not an issue. Click :button:`Ok` to open the project.
7373

7474
The project contains two packed scenes: ``main.tscn``, containing walls against
7575
which the ball collides, and ``ball.tscn``. The Main scene should open
@@ -132,7 +132,7 @@ Let's try this. Double-click ``ball.tscn`` in the FileSystem to open it.
132132
.. image:: img/instancing_ball_scene_open.webp
133133

134134
In the Scene dock on the left, select the Ball node. Then, in the :ui:`Inspector` on the
135-
right, click on the :inspector:`PhysicsMaterial`` property to expand it.
135+
right, click on the :inspector:`PhysicsMaterial` property to expand it.
136136

137137
.. image:: img/instancing_physics_material_expand.webp
138138

@@ -172,7 +172,7 @@ Rerun the game and notice how this ball now falls much faster than the others.
172172
of the ball. This is because :inspector:`PhysicsMaterial` is a *resource*, and needs
173173
to be made unique before you can edit it in a scene that is linking to its
174174
original scene. To make a resource unique for one instance, right-click on
175-
the :inspector:`Physics Material` property in the :ui:`Inspector`` and click :button:`Make Unique``
175+
the :inspector:`Physics Material` property in the :ui:`Inspector` and click :button:`Make Unique`
176176
in the context menu.
177177

178178
Resources are another essential building block of Godot games we will cover

getting_started/step_by_step/nodes_and_scenes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ opening the project, you should see an empty editor.
7272

7373
.. image:: img/nodes_and_scenes_01_empty_editor.webp
7474

75-
In an empty scene, the :ui:`Scene`` dock on the left shows several options to add a
75+
In an empty scene, the :ui:`Scene` dock on the left shows several options to add a
7676
root node quickly. :button:`2D Scene` adds a :ref:`Node2D <class_Node2D>` node,
7777
:button:`3D Scene` adds a :ref:`Node3D <class_Node3D>` node,
7878
and :button:`User Interface` adds a :ref:`Control <class_Control>` node.

getting_started/step_by_step/signals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Create a new scene by going to the menu :menu:`Scene > New Scene`.
6262

6363
.. image:: img/signals_01_new_scene.webp
6464

65-
In the Scene dock, click the :button:`2D Scene`` button. This will add
65+
In the Scene dock, click the :button:`2D Scene` button. This will add
6666
a :ref:`Node2D <class_Node2D>` as our root.
6767

6868
.. image:: img/signals_02_2d_scene.webp

0 commit comments

Comments
 (0)