Browse Source

Merge pull request #1952 from blurrred/patch-4

Grammar fix
Rémi Verschelde 6 years ago
parent
commit
fa08ba24fc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tutorials/3d/fps_tutorial/part_two.rst

+ 2 - 2
tutorials/3d/fps_tutorial/part_two.rst

@@ -448,11 +448,11 @@ Create a new script called ``Bullet_script.gd`` and attach it to the ``Bullet``
 
 
 We are going to move the entire bullet object at the root (``Bullet``). We will be using the :ref:`Area <class_Area>` to check whether or not we've collided with something
 We are going to move the entire bullet object at the root (``Bullet``). We will be using the :ref:`Area <class_Area>` to check whether or not we've collided with something
 
 
-.. note:: Why are we using a :ref:`Area <class_Area>` and not a :ref:`RigidBody <class_RigidBody>`? The main reason we're not using a :ref:`RigidBody <class_RigidBody>`
+.. note:: Why are we using an :ref:`Area <class_Area>` and not a :ref:`RigidBody <class_RigidBody>`? The main reason we're not using a :ref:`RigidBody <class_RigidBody>`
           is because we do not want the bullet to interact with other :ref:`RigidBody <class_RigidBody>` nodes.
           is because we do not want the bullet to interact with other :ref:`RigidBody <class_RigidBody>` nodes.
           By using an :ref:`Area <class_Area>` we are assuring that none of the other :ref:`RigidBody <class_RigidBody>` nodes, including other bullets, will be effected.
           By using an :ref:`Area <class_Area>` we are assuring that none of the other :ref:`RigidBody <class_RigidBody>` nodes, including other bullets, will be effected.
 
 
-          Another reason is simply because it is easier to detect collisions with a :ref:`Area <class_Area>`!
+          Another reason is simply because it is easier to detect collisions with an :ref:`Area <class_Area>`!
 
 
 Here's the script that will control our bullet:
 Here's the script that will control our bullet: