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
The following code snippet has an incorrect range
temple do c &root/1 do # ^^^^ div class: "grid grid-cols-1 lg:grid-cols-3 gap-4" do c &card/1 do h2 class: "text-xl dark:text-white mb-2" do "System Information" end end end end end
The correct range is
temple do c &root/1 do # ^^^^^^^ div class: "grid grid-cols-1 lg:grid-cols-3 gap-4" do c &card/1 do h2 class: "text-xl dark:text-white mb-2" do "System Information" end end end end end
The text was updated successfully, but these errors were encountered:
This seems to have been fixed on more recent version of Elixir, but the range is just the name, not the & or arity
&
Sorry, something went wrong.
No branches or pull requests
Description
The following code snippet has an incorrect range
The correct range is
The text was updated successfully, but these errors were encountered: