Skip to content

Commit

Permalink
Add missing period.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsenart committed Oct 2, 2018
1 parent 6a5a447 commit b2a3cff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ulid.go
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ func (m *monotonic) increment() error {
}

// random returns a uniform random value in [1, m.inc), reading entropy
// from m.Reader When m.inc == 0 || m.inc == 1, it returns 1.
// from m.Reader. When m.inc == 0 || m.inc == 1, it returns 1.
// Adapted from: https://golang.org/pkg/crypto/rand/#Int
func (m *monotonic) random() (inc uint64, err error) {
if m.inc <= 1 {
Expand Down

0 comments on commit b2a3cff

Please sign in to comment.