Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix typo and url #201

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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