Skip to content

Commit

Permalink
mention underlying implementation in the docs of pagination type
Browse files Browse the repository at this point in the history
  • Loading branch information
c4710n committed Jul 30, 2024
1 parent 217b211 commit 77dbd70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/flop.ex
Original file line number Diff line number Diff line change
Expand Up @@ -489,8 +489,8 @@ defmodule Flop do
@typedoc """
Represents the pagination type.
- `:offset` - pagination using the `offset` and `limit` parameters
- `:page` - pagination using the `page` and `page_size` parameters
- `:offset` - offset-based pagination using the `offset` and `limit` parameters
- `:page` - offset-based pagination using the `page` and `page_size` parameters
- `:first` - cursor-based pagination using the `first` and `after` parameters
- `:last` - cursor-based pagination using the `last` and `before` parameters
"""
Expand Down

0 comments on commit 77dbd70

Please sign in to comment.