Skip to content
Open
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 src/Random.elm
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ So there is a 40% chance of getting `Six`, a 20% chance of getting `Five`, and
then a 10% chance for each of the remaining faces.

**Note:** I made the weights add up to 100, but that is not necessary. I always
add up your weights into a `total`, and from there, the probablity of each case
add up your weights into a `total`, and from there, the probability of each case
is `weight / total`. Negative weights do not really make sense, so I just flip
them to be positive.
-}
Expand Down