Skip to content

Commit 6e56b12

Browse files
authored
fix spacing
1 parent b716cfe commit 6e56b12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jscomp/others/belt_Array.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ val partition : 'a array -> ('a -> bool) -> 'a array * 'a array
462462
(** [partition f a] split array into tuple of two arrays based on predicate f; first of tuple where predicate cause true, second where predicate cause false
463463
464464
@example {[
465-
partition [|1;2;3;4;5|] (fun x -> if (x mod 2) = 0 then true else false) = ([|2;4|], [|1;2;3|]);;
465+
partition [|1;2;3;4;5|] (fun x -> if (x mod 2) = 0 then true else false) = ([|2;4|], [|1;2;3|]);;
466466
partition [|1;2;3;4;5|] (fun x -> if (x mod 2) <> 0 then true else false) = ([|1;2;3|], [|2;4|]);;
467467
]}
468468
*)

0 commit comments

Comments
 (0)