You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by gi...@apache.org on 2020/12/29 13:21:52 UTC

[buildstream] 02/33: jobs/job: Add a fullstop to Job explanation

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch aevri/picklable_jobs
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit e5fcb69b0b4137933940bfd4d569d7e9d9d0c27e
Author: Angelos Evripiotis <je...@bloomberg.net>
AuthorDate: Thu May 9 10:14:12 2019 +0100

    jobs/job: Add a fullstop to Job explanation
---
 src/buildstream/_scheduler/jobs/job.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/buildstream/_scheduler/jobs/job.py b/src/buildstream/_scheduler/jobs/job.py
index 203564a..ee01a92 100644
--- a/src/buildstream/_scheduler/jobs/job.py
+++ b/src/buildstream/_scheduler/jobs/job.py
@@ -75,7 +75,7 @@ class Process(multiprocessing.Process):
 
 # Job()
 #
-# The Job object represents a parallel task, when calling Job.spawn(),
+# The Job object represents a parallel task. When calling Job.spawn(),
 # the given `Job.child_process()` will be called in parallel to the
 # calling process, and `Job.parent_complete()` will be called with the
 # action result in the calling process when the job completes.