We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given e.g. (go.std.os/LinkError. ["one" "two"]), this diagnostic seems insufficient:
(go.std.os/LinkError. ["one" "two"])
<repl>:1:1: Eval error: Index 2 is out of bounds [0..1]
It should specify how many elements are required in the vector.
Further, a type mismatch in one of the elements fails to specify which one has the problem:
user=> (go.std.os/LinkError. ["one" "two" :hey "there"]) <repl>:6:1: Eval error: Expected String, got Keyword user=>
A suffix such as (element 2) would help.
(element 2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given e.g.
(go.std.os/LinkError. ["one" "two"])
, this diagnostic seems insufficient:It should specify how many elements are required in the vector.
Further, a type mismatch in one of the elements fails to specify which one has the problem:
A suffix such as
(element 2)
would help.The text was updated successfully, but these errors were encountered: