Skip to content
Open
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
2 changes: 1 addition & 1 deletion Doc/library/asyncio-sync.rst
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ Barrier

A barrier object. Not thread-safe.

A barrier is a simple synchronization primitive that allows to block until
A barrier is a simple synchronization primitive that allows blocking until
*parties* number of tasks are waiting on it.
Tasks can wait on the :meth:`~Barrier.wait` method and would be blocked until
the specified number of tasks end up waiting on :meth:`~Barrier.wait`.
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/hmac.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
--------------

This module implements the HMAC algorithm as described by :rfc:`2104`.
The interface allows to use any hash function with a *fixed* digest size.
The interface allows using any hash function with a *fixed* digest size.
In particular, extendable output functions such as SHAKE-128 or SHAKE-256
cannot be used with HMAC.

Expand Down
Loading