Skip to content

Commit

Permalink
fix: fix typo and url (#201)
Browse files Browse the repository at this point in the history
* fix typo

* fix url (jp -> en)

Co-authored-by: Takeshi Miura <57553950+1222-takeshi@users.noreply.github.com>
  • Loading branch information
tkimura4 and 1222-takeshi authored Dec 20, 2021
1 parent de3b314 commit b9411d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion common/autoware_auto_cmake/cmake/autoware_auto_cmake.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# Set lanuage standard with variables instead of per target so even targets that
# Set language standard with variables instead of per target so even targets that
# don't use autoware_set_compile_options() have this set when importing
# autoware_auto_cmake via ament_auto_find_build_dependencies()
if(NOT CMAKE_C_STANDARD)
Expand Down
2 changes: 1 addition & 1 deletion common/interpolation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $$

### Tridiagonal Matrix Algorithm

We solve tridiagonal linear equation according to [this article](https://mathlang.hatenablog.com/entry/2018/10/14/232741) where variables of linear equation are expressed as follows in the implementation.
We solve tridiagonal linear equation according to [this article](https://www.iist.ac.in/sites/default/files/people/tdma.pdf) where variables of linear equation are expressed as follows in the implementation.

$$
\begin{align}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def launch_setup(context, *args, **kwargs):
with open(vehicle_characteristics_param_path, "r") as f:
vehicle_characteristics_param = yaml.safe_load(f)["/**"]["ros__parameters"]

simultor_model_param_path = LaunchConfiguration("simulator_model_param_file").perform(context)
with open(simultor_model_param_path, "r") as f:
simulator_model_param_path = LaunchConfiguration("simulator_model_param_file").perform(context)
with open(simulator_model_param_path, "r") as f:
simulator_model_param = yaml.safe_load(f)["/**"]["ros__parameters"]

simple_planning_simulator_node = Node(
Expand Down

0 comments on commit b9411d2

Please sign in to comment.