Skip to content

Commit

Permalink
Remove charlist constant warning on Elixir 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
kipcole9 committed May 1, 2024
1 parent fd39952 commit 5a51ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cldr/number/format/compiler.ex
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ defmodule Cldr.Number.Format.Compiler do
iex> Cldr.Number.Format.Compiler.parse "¤ #,##0.00;¤-#,##0.00"
{:ok,
[positive: [currency: 1, literal: " ", format: "#,##0.00"],
negative: [currency: 1, minus: '-', format: :same_as_positive]]}
negative: [currency: 1, minus: ~c"-", format: :same_as_positive]]}
"""
def parse(tokens) when is_list(tokens) do
Expand Down

0 comments on commit 5a51ccc

Please sign in to comment.