Skip to content

Commit

Permalink
Some isn't Result.t
Browse files Browse the repository at this point in the history
  • Loading branch information
hyphenrf authored and georgyo committed Mar 19, 2023
1 parent 3a90c38 commit 6ed645d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/practice/say/say.mli
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ open Base

(* Spells out a number from 0 to 999,999,999,999 in English.
If the input is outside that range, then an Error is returned.
E.g in_english 100L = Some "one hundred"
E.g in_english 100L = Ok "one hundred"
in_english (-1)L = Error ""
*)
val in_english : int64 -> (string, string) Result.t
val in_english : int64 -> (string, string) Result.t

0 comments on commit 6ed645d

Please sign in to comment.