Open das-g opened 1 year ago
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].
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