gabiz / phoenix_alexa

Alexa library for Phoenix
MIT License
14 stars 9 forks source link

Add parentheses to function calls #2

Closed lizvdk closed 1 year ago

lizvdk commented 7 years ago

As of Elixir 1.4.0, the compiler issues a warning function calls are made without parentheses.

warning: variable "deps" does not exist and is being expanded to "deps()", please use parentheses to remove the ambiguity or change the variable name /my_project/deps/phoenix_alexa/mix.exs:11 warning: variable "package" does not exist and is being expanded to "package()", please use parentheses to remove the ambiguity or change the variable name /my_project/deps/phoenix_alexa/mix.exs:12

Adding parentheses to deps() and package() in the Mixfile addresses the warning.