Skip to content

Commit 485116d

Browse files
committed
Character and typo fixes
1 parent d410ace commit 485116d

File tree

16 files changed

+23
-23
lines changed

16 files changed

+23
-23
lines changed

about/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ This documentation is organized into several sections:
6565
engine to make games. It starts with the :ref:`Step by step
6666
<toc-learn-step_by_step>` tutorial which should be the entry point for all
6767
new users. **This is the best place to start if you're new!**
68-
- The **Manual** can be read or referenced as needed,
68+
- The **Manual** can be read or referenced as needed,
6969
in any order. It contains feature-specific tutorials and documentation.
7070
- **Contributing** gives information related to contributing to
7171
Godot, whether to the core engine, documentation, demos or other parts.

contributing/development/compiling/compiling_for_ios.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ should be placed in ``libgodot.ios.debug.xcframework`` and ``libgodot.ios.releas
8282
$ lipo -create libgodot.ios.debug.arm64.simulator.a libgodot.ios.debug.x86_64.simulator.a -output ios_xcode/libgodot.ios.debug.xcframework/ios-arm64_x86_64-simulator/libgodot.a
8383

8484
$ cp libgodot.ios.opt.arm64.a ios_xcode/libgodot.ios.release.xcframework/ios-arm64/libgodot.a
85-
$ lipo -create libgodot.ios.opt.arm64.simulator.a libgodot.ios.opt.x86_64.simulator.a -output ios_xcode/libgodot.ios.release.xcframework/ios-arm64_x86_64-simulator/libgodot.a
85+
$ lipo -create libgodot.ios.opt.arm64.simulator.a libgodot.ios.opt.x86_64.simulator.a -output ios_xcode/libgodot.ios.release.xcframework/ios-arm64_x86_64-simulator/libgodot.a
8686

8787
The MoltenVK static ``.xcframework`` folder must also be placed in the ``ios_xcode``
8888
folder once it has been created.

contributing/documentation/building_the_manual.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation as a PDF, EPUB, or LaTeX file, for example.
1010
Before you get started, make sure that you have:
1111

1212
- `Git <https://git-scm.com/>`_
13-
- `make <https://www.gnu.org/software/make/>`_ (unless youre using Windows)
13+
- `make <https://www.gnu.org/software/make/>`_ (unless you're using Windows)
1414
- `Python <https://www.python.org/>`_ 3
1515

1616
.. note:: Python 3 should come with the ``pip3`` command. You may need to write

contributing/documentation/contributing_to_the_documentation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Editing existing pages
6363
To edit an existing page, locate its ``.rst`` source file and open it in your
6464
favorite text editor. You can then commit the changes, push them to your fork,
6565
and make a pull request. **Note that the pages in** ``classes/`` **should not be
66-
edited here.** They are automatically generated from Godots `XML class
66+
edited here.** They are automatically generated from Godot's `XML class
6767
reference <https://github.com/godotengine/godot/tree/master/doc/classes>`__.
6868
See :ref:`doc_updating_the_class_reference` for details.
6969

@@ -145,7 +145,7 @@ first letter capitalized.
145145
Sphinx and reStructuredText syntax
146146
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
147147

148-
Check Sphinxs `reST Primer <https://www.sphinx-doc.org/en/stable/rest.html>`__
148+
Check Sphinx's `reST Primer <https://www.sphinx-doc.org/en/stable/rest.html>`__
149149
and the `official reference <https://docutils.sourceforge.net/rst.html>`__ for
150150
details on the syntax.
151151

contributing/documentation/docs_image_guidelines.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ All screenshots should ideally be taken on a 1080p screen. Anything higher
3131
resolution is adding detail that doesn't make the documentation better and
3232
dramatically increases file size. If you're taking screenshots on a higher
3333
resolution screen the screenshot should be scaled down. There are instructions
34-
on how to do this later on this page.
34+
on how to do this later on this page.
3535

3636
Format conversion
3737
-----------------

getting_started/first_3d_game/going_further.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,29 @@ You can pat yourself on the back for having completed your first 3D game with
99
Godot.
1010

1111
In this series, we went over a wide range of techniques and editor features.
12-
Hopefully, youve witnessed how intuitive Godots scene system can be and
12+
Hopefully, you've witnessed how intuitive Godot's scene system can be and
1313
learned a few tricks you can apply in your projects.
1414

1515
But we just scratched the surface: Godot has a lot more in store for you to save
1616
time creating games. And you can learn all that by browsing the documentation.
1717

18-
Where should you begin? Below, youll find a few pages to start exploring and
19-
build upon what youve learned so far.
18+
Where should you begin? Below, you'll find a few pages to start exploring and
19+
build upon what you've learned so far.
2020

21-
But before that, heres a link to download a completed version of the project:
21+
But before that, here's a link to download a completed version of the project:
2222
`<https://github.com/godotengine/godot-3d-dodge-the-creeps>`_.
2323

2424
Exploring the manual
2525
--------------------
2626

27-
The manual is your ally whenever you have a doubt or youre curious about a
27+
The manual is your ally whenever you have a doubt or you're curious about a
2828
feature. It does not contain tutorials about specific game genres or mechanics.
2929
Instead, it explains how Godot works in general. In it, you will find
3030
information about 2D, 3D, physics, rendering and performance, and much more.
3131

3232
Here are the sections we recommend you to explore next:
3333

34-
1. Read the :ref:`Scripting section <toc-scripting-core-features>` to learn essential programming features youll use
34+
1. Read the :ref:`Scripting section <toc-scripting-core-features>` to learn essential programming features you'll use
3535
in every project.
3636
2. The :ref:`3D <toc-learn-features-3d>` and :ref:`Physics <toc-learn-features-physics>` sections will teach you more about 3D game creation in the
3737
engine.
@@ -40,5 +40,5 @@ Here are the sections we recommend you to explore next:
4040
You can start with these or, if you prefer, look at the sidebar menu on the left
4141
and pick your options.
4242

43-
We hope you enjoyed this tutorial series, and were looking forward to seeing
43+
We hope you enjoyed this tutorial series, and we're looking forward to seeing
4444
what you achieve using Godot.

getting_started/step_by_step/signals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limits `coupling
2222
code flexible.
2323

2424
For example, you might have a life bar on the screen that represents the
25-
players health. When the player takes damage or uses a healing potion, you want
25+
player's health. When the player takes damage or uses a healing potion, you want
2626
the bar to reflect the change. To do so, in Godot, you would use signals.
2727

2828
.. note:: As mentioned in the introduction, signals are Godot's version of the

tutorials/2d/2d_lights_and_shadows.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ Manually drawing a light occluder
216216
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
217217

218218
Create a LightOccluder2D node, then select the node and click the "+" button at
219-
the top top of the 2D editor. When asked to create a polygon resource, answer
219+
the top of the 2D editor. When asked to create a polygon resource, answer
220220
**Yes**. You can then start drawing an occluder polygon by clicking to create
221221
new points. You can remove existing points by right-clicking them, and you can
222222
create new points from the existing line by clicking on the line then dragging.

tutorials/3d/procedural_geometry/surfacetool.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ note, ``generate_normals()`` only works if the primitive type is set to ``Mesh.P
9595
You may notice that normal mapping or other material properties look broken on
9696
the generated mesh. This is because normal mapping **requires** the mesh to
9797
feature *tangents*, which are separate from *normals*. You can either add custom
98-
tangents manually, or generate them automatically with with
98+
tangents manually, or generate them automatically with
9999
``generate_tangents()``. This method requires that each vertex have UVs and
100100
normals set already.
101101

tutorials/animation/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ at various points, and change their timing.
8686
Each line in the Animation Panel is an animation track that references a
8787
Normal or Transform property of a node. Each track stores a path to
8888
a node and its affected property. For example, the position track
89-
in the illustration refers to to the ``position`` property of the Sprite2D
89+
in the illustration refers to the ``position`` property of the Sprite2D
9090
node.
9191

9292
.. figure:: img/animation_normal_track.png

0 commit comments

Comments
 (0)