Skip to content
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
2 changes: 1 addition & 1 deletion docs/pages/interfaces.rst
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ do not have type aliases for one type argument in a form of ``ResultLike1``.
Why does ``Mappable1`` exists and ``ResultLike1`` does not?

Because ``Mappable1`` does make sense.
But, ``ResultLike1`` requiers at least two (value and error) types to exist.
But, ``ResultLike1`` requires at least two (value and error) types to exist.
The same applies for ``ReaderLike1`` and ``ReaderResultLike1``
and ``ReaderResultLike2``.

Expand Down
2 changes: 1 addition & 1 deletion returns/primitives/reawaitable.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ReAwaitable(object):
Allows to write coroutines that can be awaited multiple times.

It works by actually caching the ``await`` result and reusing it.
So, in reallity we still ``await`` once,
So, in reality we still ``await`` once,
but pretending to do it multiple times.

Why is that required? Because otherwise,
Expand Down