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

docs: Fix a few typos #764

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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 examples/django/proj/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@

AUTH_PASSWORD_VALIDATORS = [
{
'NAME': ( # ridiculuously long names are silly
'NAME': ( # ridiculously long names are silly
'django.contrib.auth.password_validation.'
'UserAttributeSimilarityValidator'),
},
Expand Down
2 changes: 1 addition & 1 deletion faust/transport/drivers/aiokafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ async def getmany(self,
"""Fetch batch of messages from server."""
# Implementation for the Fetcher service.
_consumer = self._ensure_consumer()
# NOTE: Since we are enqueing the fetch request,
# NOTE: Since we are enqueuing the fetch request,
# we need to check when dequeued that we are not in a rebalancing
# state at that point to return early, or we
# will create a deadlock (fetch request starts after flow stopped)
Expand Down
2 changes: 1 addition & 1 deletion faust/types/settings/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def to_bool(term: Union[str, bool], *,


class Param(Generic[IT, OT], property):
"""Faust setting desscription.
"""Faust setting description.

Describes a Faust setting, how to read it from environment
variables or from a configuration object.
Expand Down
2 changes: 1 addition & 1 deletion faust/types/settings/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def debug(self) -> bool:
def env_prefix(self) -> str:
"""Environment variable prefix.

When configuring Faust by environent variables,
When configuring Faust by environment variables,
this adds a common prefix to all Faust environment value names.
"""

Expand Down