Skip to content

Commit

Permalink
Merge pull request #238 from turnhub/fix/evaluate_as_string-spec
Browse files Browse the repository at this point in the history
Fix `evaluate_as_string` spec
  • Loading branch information
maryamaljanabi authored Dec 12, 2024
2 parents 6e35e4b + 0f05eaa commit d2b89d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ by adding `expression` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:expression, "~> 2.41.3"}
{:expression, "~> 2.41.4"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/expression.ex
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ defmodule Expression do
end

@spec evaluate_as_string!(
String.t() | nil,
String.t() | Number.t() | nil,
map(),
module()
) :: String.t()
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Expression.MixProject do
use Mix.Project

@version "2.41.3"
@version "2.41.4"

def project do
[
Expand Down

0 comments on commit d2b89d7

Please sign in to comment.