Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
tlux committed Apr 23, 2020
1 parent 754f93d commit 2c6d406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/file_size.ex
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ defmodule FileSize do
iex> FileSize.compare(FileSize.new(3, :b), FileSize.new(16, :bit))
:gt
"""
@spec compare(t | String.t, t | String.t) :: :lt | :eq | :gt
@spec compare(t | String.t(), t | String.t()) :: :lt | :eq | :gt
def compare(size, other_size) do
size = parse!(size)
other_size = parse!(other_size)
Expand Down

0 comments on commit 2c6d406

Please sign in to comment.