Skip to content

Commit

Permalink
test: improve coverage in ExToolkit.Ecto.Query example
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonmestevao committed Feb 10, 2024
1 parent ab0002a commit 340976c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ex_toolkit/ecto/query.ex
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ defmodule ExToolkit.Ecto.Query do
#Ecto.Query<from u0 in "users", limit: ^20, offset: ^20, select: u0.id>
iex> query = from(u in "users", select: u.id)
iex> apply_pagination(query, 4, 15)
iex> apply_pagination(query, 4, "15")
#Ecto.Query<from u0 in "users", limit: ^15, offset: ^45, select: u0.id>
"""
Expand Down

0 comments on commit 340976c

Please sign in to comment.