Skip to content

Commit 2e6baeb

Browse files
authored
corrected obvious typos in text and mathematical notations as well as grammatical corrections (#1304)
1 parent 99af1f3 commit 2e6baeb

File tree

22 files changed

+29
-29
lines changed

22 files changed

+29
-29
lines changed

docs/modules/0_getting_started/2_how_to_run_sample_codes_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ using pip :
4646
4747
5. Execute python script in each directory.
4848

49-
For example, to run the sample code of `Extented Kalman Filter` in the
49+
For example, to run the sample code of `Extended Kalman Filter` in the
5050
`localization` directory, execute the following command:
5151

5252
.. code-block::

docs/modules/0_getting_started/3_how_to_contribute_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ At first, please fix all CI errors before code review.
132132
You can check your PR doc from the CI panel.
133133

134134
After the "ci/circleci: build_doc" CI is succeeded,
135-
you can access you PR doc with clicking the [Details] of the "ci/circleci: build_doc artifact" CI.
135+
you can access your PR doc with clicking the [Details] of the "ci/circleci: build_doc artifact" CI.
136136

137137
.. image:: /_static/img/doc_ci.png
138138

docs/modules/10_inverted_pendulum/inverted_pendulum_main.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Inverted Pendulum
44
------------------
55

66
An inverted pendulum on a cart consists of a mass :math:`m` at the top of a pole of length :math:`l` pivoted on a
7-
horizontally moving base as shown in the adjacent.
7+
horizontally moving base as shown in the adjacent figure.
88

99
The objective of the control system is to balance the inverted pendulum by applying a force to the cart that the pendulum is attached to.
1010

@@ -97,7 +97,7 @@ Code Link
9797

9898
MPC control
9999
~~~~~~~~~~~~~~~~~~~~~~~~~~~
100-
The MPC controller minimize this cost function defined as:
100+
The MPC controller minimizes this cost function defined as:
101101

102102
.. math:: J = x^T Q x + u^T R u
103103

docs/modules/12_appendix/Kalmanfilter_basics_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Variance, Covariance and Correlation
5555
Variance
5656
^^^^^^^^
5757

58-
Variance is the spread of the data. The mean does’nt tell much **about**
58+
Variance is the spread of the data. The mean doesn’t tell much **about**
5959
the data. Therefore the variance tells us about the **story** about the
6060
data meaning the spread of the data.
6161

docs/modules/13_mission_planning/behavior_tree/behavior_tree_main.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Behavior Tree
22
-------------
33

44
Behavior Tree is a modular, hierarchical decision model that is widely used in robot control, and game development.
5-
It present some similarities to hierarchical state machines with the key difference that the main building block of a behavior is a task rather than a state.
6-
Behavior Tree have been shown to generalize several other control architectures (https://ieeexplore.ieee.org/document/7790863)
5+
It presents some similarities to hierarchical state machines with the key difference that the main building block of a behavior is a task rather than a state.
6+
Behavior Trees have been shown to generalize several other control architectures (https://ieeexplore.ieee.org/document/7790863)
77

88
Code Link
99
~~~~~~~~~~~~~

docs/modules/1_introduction/2_python_for_robotics/python_for_robotics_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Python for Robotics
22
----------------------
33

4-
A programing language, Python is used for this `PythonRobotics` project
4+
A programming language, Python is used for this `PythonRobotics` project
55
to achieve the purposes of this project described in the :ref:`What is PythonRobotics?`.
66

77
This section explains the Python itself and features for science computing and robotics.

docs/modules/1_introduction/3_technologies_for_robotics/technologies_for_robotics_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Technologies for Robotics
33

44
The field of robotics needs wide areas of technologies such as mechanical engineering,
55
electrical engineering, computer science, and artificial intelligence (AI).
6-
This project, `PythonRobotics`, only focus on computer science and artificial intelligence.
6+
This project, `PythonRobotics`, only focuses on computer science and artificial intelligence.
77

88
The technologies for robotics are categorized as following 3 categories:
99

docs/modules/2_localization/histogram_filter_localization/histogram_filter_localization_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ But, the probability is getting uncertain without observations:
6868

6969

7070
The `gaussian filter <https://docs.scipy.org/doc/scipy/reference/generated/scipy.ndimage.gaussian_filter.html>`_
71-
is used in the simulation for adding noize.
71+
is used in the simulation for adding noise.
7272

7373
Step3: Update probability by observation
7474
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

docs/modules/2_localization/particle_filter_localization/particle_filter_localization_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and the red line is estimated trajectory with PF.
1313
It is assumed that the robot can measure a distance from landmarks
1414
(RFID).
1515

16-
This measurements are used for PF localization.
16+
These measurements are used for PF localization.
1717

1818
Code Link
1919
~~~~~~~~~~~~~

docs/modules/3_mapping/lidar_to_grid_map_tutorial/lidar_to_grid_map_tutorial_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ unknown (unobserved) areas, which are close to 0.5.
1919
.. figure:: grid_map_example.png
2020

2121
In order to construct the grid map from the measurement we need to
22-
discretise the values. But, first let’s need to ``import`` some
22+
discretise the values. But, first we need to ``import`` some
2323
necessary packages.
2424

2525
.. code:: ipython3

0 commit comments

Comments
 (0)