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
In πΊ A tour of Unison, section π Running the UCM, right under the code block beginning with .> find : [a] -> [a], the following sentence currently occurs:
.> find : [a] -> [a]
Here, we used the did a type-based, with find followed by a colon, :, to search for functions of type [a] -> [a].
find
:
[a] -> [a]
It should instead probably be either
Here, we used find followed by a colon, :, to search for functions of type [a] -> [a].
or
Here, we did a type-based search, to search for functions of type [a] -> [a].
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In πΊ A tour of Unison, section π Running the UCM, right under the code block beginning with
.> find : [a] -> [a]
, the following sentence currently occurs:It should instead probably be either
or
The text was updated successfully, but these errors were encountered: