Skip to content

Commit c6bdd48

Browse files
authored
docs: Fix a few typos (AtsushiSakai#695)
There are small typos in: - ArmNavigation/arm_obstacle_navigation/arm_obstacle_navigation.py - ArmNavigation/arm_obstacle_navigation/arm_obstacle_navigation_2.py - docs/modules/slam/FastSLAM1/FastSLAM1_main.rst - docs/modules/slam/ekf_slam/ekf_slam_main.rst Fixes: - Should read `configuration` rather than `configuation`. - Should read `trajectory` rather than `tracjectory`. - Should read `prediction` rather than `prediciton`. Signed-off-by: Tim Gates <[email protected]>
1 parent 6d97a8f commit c6bdd48

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ArmNavigation/arm_obstacle_navigation/arm_obstacle_navigation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def astar_torus(grid, start_node, goal_node):
105105
106106
Args:
107107
grid: An occupancy grid (ndarray)
108-
start_node: Initial joint configuation (tuple)
108+
start_node: Initial joint configuration (tuple)
109109
goal_node: Goal joint configuration (tuple)
110110
111111
Returns:

ArmNavigation/arm_obstacle_navigation/arm_obstacle_navigation_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def astar_torus(grid, start_node, goal_node):
136136
137137
Args:
138138
grid: An occupancy grid (ndarray)
139-
start_node: Initial joint configuation (tuple)
139+
start_node: Initial joint configuration (tuple)
140140
goal_node: Goal joint configuration (tuple)
141141
142142
Returns:

docs/modules/slam/FastSLAM1/FastSLAM1_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ an array of landmark locations
3939
- The blue line is the true trajectory
4040
- The red line is the estimated trajectory
4141
- The red dots represent the distribution of particles
42-
- The black line represent dead reckoning tracjectory
42+
- The black line represent dead reckoning trajectory
4343
- The blue x is the observed and estimated landmarks
4444
- The black x is the true landmark
4545

docs/modules/slam/ekf_slam/ekf_slam_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ values incorporate the error into the estimation.
151151

152152
:math:`\begin{equation*} X_{DR} = FX + B(U + R) \end{equation*}`
153153

154-
The implementation of the motion model prediciton code is shown in
154+
The implementation of the motion model prediction code is shown in
155155
``motion_model``. The ``observation`` function shows how the simulation
156156
uses (or doesn’t use) the process noise ``Rsim`` to the find the ground
157157
truth and dead reckoning estimates of the pose.

0 commit comments

Comments
 (0)