Skip to content

Commit 8efcac1

Browse files
committed
style: fix credo warnings
1 parent 5b1d61b commit 8efcac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/faker/internet.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ defmodule Faker.Internet do
257257
@spec ip_v6_address() :: String.t()
258258
def ip_v6_address do
259259
Enum.map_join(1..8, ":", fn _part ->
260-
Faker.random_between(0, 65535)
260+
Faker.random_between(0, 65_535)
261261
|> Integer.to_string(16)
262262
|> String.pad_leading(4, ["0"])
263263
end)

0 commit comments

Comments
 (0)