doc: correct typo "can calls" (#3446)

Fixes a minor typo.
This commit is contained in:
Phil de Joux 2024-02-21 17:31:02 -05:00 committed by GitHub
parent 6e821de11a
commit 9a970611ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,7 @@ convert the pure non-monadic value `x / y` into the required `Except` object. S
Now this return typing would get tedious if you had to include it everywhere that you call this
function, however, Lean type inference can clean this up. For example, you can define a test
function can calls the `divide` function and you don't need to say anything here about the fact that
function that calls the `divide` function and you don't need to say anything here about the fact that
it might throw an error, because that is inferred:
-/
def test := divide 5 0