Skip to content

Commit aefa730

Browse files
author
Kazys Stepanas
committed
Spelling fixes for CI
1 parent 389e76c commit aefa730

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

colcon_cmake/task/cmake/build.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def _have_jobs_arg(self, cmd, env):
224224
function checks if any known mechanisms are present. This checks for
225225
the following patterns: [-j#, -j #, --parallel, '-- -j']. The last item
226226
is for pre CMake 3.12, while the prior options are for 3.12+ where
227-
CMake knowns how to pass jobs to the make system.
227+
CMake knows how to pass jobs to the make system.
228228
229229
:param list cmd: Command line argument list for the build command.
230230
:returns: True when a jobs argument is found in cmd.
@@ -292,7 +292,7 @@ async def _build(self, args, env, *, additional_targets=None):
292292
# Add jobs from MAKEFLAGS or max out.
293293
job_args = self._get_make_arguments(env)
294294
if job_args:
295-
# add '--' passthrough if not already present
295+
# add '--' pass through if not already present
296296
if '--' not in cmd:
297297
cmd += ['--']
298298
cmd += job_args
@@ -403,7 +403,7 @@ async def _install(self, args, env):
403403
if allow_job_args:
404404
job_args = self._get_make_arguments(env)
405405
if job_args:
406-
# add '--' passthrough if not already present
406+
# add '--' pass through if not already present
407407
if '--' not in cmd:
408408
cmd += ['--']
409409
cmd += job_args

0 commit comments

Comments
 (0)