Skip to content

Commit

Permalink
Fix typo in task add function docs
Browse files Browse the repository at this point in the history
This actually may have confused some folks. While the grammar of "does
now begin" is incorrect, the meaning may have been interpreted reverse
of what was intended.

The function has always worked as it is in this change though.
  • Loading branch information
SpamapS committed Jun 3, 2022
1 parent 7c38cc8 commit 26a8bde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/libgearman/gearman_client_add_task.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Link with -lgearman
DESCRIPTION
-----------
:c:func:`gearman_client_add_task` creates a task and adds it to the given :c:type:`gearman_client_st`. Execution of the task does now begin until :c:func:`gearman_client_run_tasks` is called.
:c:func:`gearman_client_add_task` creates a task and adds it to the given :c:type:`gearman_client_st`. Execution of the task does not begin until :c:func:`gearman_client_run_tasks` is called.
If the unique value is not set, then a unique will be assigned.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Link with -lgearman
DESCRIPTION
-----------
:c:func:`gearman_client_add_task_background` creates a background task and adds it ito the given :c:type:`gearman_client_st`. Execution of the task does now begin until :c:func:`gearman_client_run_tasks` is called.
:c:func:`gearman_client_add_task_background` creates a background task and adds it ito the given :c:type:`gearman_client_st`. Execution of the task does not begin until :c:func:`gearman_client_run_tasks` is called.
If the unique value is not set, then a unique will be assigned.
Expand Down

0 comments on commit 26a8bde

Please sign in to comment.