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 a few typos in the docs #563

Merged
merged 1 commit into from
Feb 28, 2022
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
6 changes: 3 additions & 3 deletions docs/discussions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ This says we can safely expect the file to contain ``abcd``.

Note that Procrastinate will use PostgreSQL to search the jobs table for suitable jobs.
Even if the database contains a high proportion of locked jobs, this will barely affect
Procrastinates's capacity to quickly find the free jobs.
Procrastinate's capacity to quickly find the free jobs.

A good string identifier for the lock is a string identifier of the shared resource,
UUIDs are well suited for this. If multiple resources are implicated, a combination of
Expand Down Expand Up @@ -331,8 +331,8 @@ have to be maintained in parallel.
How stable is Procrastinate?
----------------------------

More and more stable. We've started mentionning the project around, and it's
now used in production in real projects.
More and more stable. We've started mentioning the project around, and it's now
used in production in real projects.

That being said, we'd like to develop real monitoring tools before we call this
really ready for production.
Expand Down
2 changes: 1 addition & 1 deletion docs/howto/blueprints.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Firstly, create a Blueprint instance and then create some tasks::
def mytask(argument, other_argument):
...

In your projcet register the blueprint with the `App` after you have created it::
In your project register the blueprint with the `App` after you have created it::

from procrastinate import AiopgConnector, App

Expand Down
2 changes: 1 addition & 1 deletion docs/howto/defer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Create a job pattern, launch multiple jobs

::

pattern = my_task.configure(task_kwagrs={"a": 1})
pattern = my_task.configure(task_kwargs={"a": 1})

pattern.defer(b=2)
pattern.defer(b=3)
Expand Down