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 typos #2

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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ All pagination schemes are supported:
- [By page index](https://unpaginate.rogdham.net/usecases/#by-page)
- [By offset](https://unpaginate.rogdham.net/usecases/#by-offset)
- [Using a cursor](https://unpaginate.rogdham.net/usecases/#by-cursor)
- Other schemes through [avdanced mode](https://unpaginate.rogdham.net/usecases/#advanced)
- Other schemes through [advanced mode](https://unpaginate.rogdham.net/usecases/#advanced)

<!-- END README INSERT -->
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ All pagination schemes are supported:
- [By page index](usecases.md#by-page)
- [By offset](usecases.md#by-offset)
- [Using a cursor](usecases.md#by-cursor)
- Other schemes through [avdanced mode](usecases.md#advanced)
- Other schemes through [advanced mode](usecases.md#advanced)

<!-- END README INSERT -->

Expand Down
2 changes: 1 addition & 1 deletion docs/src/stop.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ For example, to stop when the value on the context stops increasing by one:
The `|` and `&` operators will work as expected, assuming that one of the operands
is a provided stop condition, e.g. `my_stop | stop_on_page_smaller_than(100)`.

However, combining only custom stop conditions is not posible directly, instead
However, combining only custom stop conditions is not possible directly, instead
start with `stop_manual` (because it does nothing): e.g.
`stop_manual | my_stop1 | my_stop2`.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ envlist =

[testenv]
package = wheel
wheel_build_env = .pkg # reuse same wheel accross envs
wheel_build_env = .pkg # reuse same wheel across envs
deps =
pytest==8.1.2
pytest-cov==5.0.0
Expand Down