Skip to content

Commit

Permalink
missed in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
CoderDennis committed Jan 3, 2024
1 parent cae6142 commit 121d2ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/decorum.ex
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,10 @@ defmodule Decorum do
end

@doc """
Generates a list of values produced by the given generator
Generates a list of values produced by the given generator.
Use a biased coin flip to determine if another value should be gerenated or the list should be terminated
Use a biased coin flip to determine if another value should be gerenated
or the list should be terminated.
"""
@spec list_of(t(a)) :: t([a]) when a: term()
def list_of(%Decorum{generator: generator}) do
Expand Down Expand Up @@ -290,7 +291,6 @@ defmodule Decorum do
Zips corresponding elements from a finite collection of generators into a
generator of tuples.
"""
@spec zip([t(any())]) :: t(tuple())
def zip(generators) do
Expand Down

0 comments on commit 121d2ad

Please sign in to comment.