Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Dec 18, 2024
1 parent 9a2e080 commit 4a65000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ash/generator/generator.ex
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ defmodule Ash.Generator do
This is equivalent to `identifier |> Ash.Generator.sequence(fun, sequencer) |> Enum.at(0)`
"""
def next_in_sequence(identifer, fun, sequencer \\ fn i -> (i || -1) + 1 end) do
def next_in_sequence(identifier, fun, sequencer \\ fn i -> (i || -1) + 1 end) do
identifier
|> sequence(fun, sequencer)
|> Enum.at(0)
Expand Down

0 comments on commit 4a65000

Please sign in to comment.