From aefa7300e2bed95dca7951b85a8e8a9884c610d9 Mon Sep 17 00:00:00 2001 From: Kazys Stepanas Date: Tue, 28 Sep 2021 11:01:09 +1000 Subject: [PATCH] Spelling fixes for CI --- colcon_cmake/task/cmake/build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/colcon_cmake/task/cmake/build.py b/colcon_cmake/task/cmake/build.py index 38ac37e..934eb68 100644 --- a/colcon_cmake/task/cmake/build.py +++ b/colcon_cmake/task/cmake/build.py @@ -224,7 +224,7 @@ def _have_jobs_arg(self, cmd, env): function checks if any known mechanisms are present. This checks for the following patterns: [-j#, -j #, --parallel, '-- -j']. The last item is for pre CMake 3.12, while the prior options are for 3.12+ where - CMake knowns how to pass jobs to the make system. + CMake knows how to pass jobs to the make system. :param list cmd: Command line argument list for the build command. :returns: True when a jobs argument is found in cmd. @@ -292,7 +292,7 @@ async def _build(self, args, env, *, additional_targets=None): # Add jobs from MAKEFLAGS or max out. job_args = self._get_make_arguments(env) if job_args: - # add '--' passthrough if not already present + # add '--' pass through if not already present if '--' not in cmd: cmd += ['--'] cmd += job_args @@ -403,7 +403,7 @@ async def _install(self, args, env): if allow_job_args: job_args = self._get_make_arguments(env) if job_args: - # add '--' passthrough if not already present + # add '--' pass through if not already present if '--' not in cmd: cmd += ['--'] cmd += job_args