Skip to content

Commit

Permalink
Remove @doc since since we have to support older versions of Elixir
Browse files Browse the repository at this point in the history
  • Loading branch information
kipcole9 committed Jan 27, 2020
1 parent a1ccb47 commit 0ca0b15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/money.ex
Original file line number Diff line number Diff line change
Expand Up @@ -1724,7 +1724,7 @@ defmodule Money do
"""
@spec normalize(Money.t()) :: Money.t()
@doc since: "5.0.0"
# @doc since: "5.0.0"
if Code.ensure_loaded?(Decimal) and function_exported?(Decimal, :normalize, 1) do
def normalize(%Money{currency: currency, amount: amount}) do
%Money{currency: currency, amount: Decimal.normalize(amount)}
Expand Down

0 comments on commit 0ca0b15

Please sign in to comment.