Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Some warnings during compile time #8

Open
davidspiess opened this issue Apr 23, 2016 · 2 comments
Open

Some warnings during compile time #8

davidspiess opened this issue Apr 23, 2016 · 2 comments

Comments

@davidspiess
Copy link

lib/ex_csv/parser.ex:24: warning: you are piping into a function call without parentheses, which may be ambiguous. Please wrap the function you are piping into in parentheses. For example:

foo 1 |> bar 2 |> baz 3

Should be written as:

foo(1) |> bar(2) |> baz(3)

lib/ex_csv/table.ex:7: warning: variable body is unused
lib/ex_csv/table.ex:7: warning: variable value is unused
lib/ex_csv/table.ex:10: warning: variable list is unused

@benwilson512
Copy link
Member

Hey! Thanks for catching this. I'll look at it here in a few days. Feel free to write a PR as well if you want to tackle it earlier :)

@ghost
Copy link

ghost commented Jun 29, 2016

@benwilson512 PR #9 fixes this issue

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants