Skip to content

Commit 37a1605

Browse files
committed
remove deps no longer needed
1 parent c4c2630 commit 37a1605

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

src/Iter.mli

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,11 +259,11 @@ val keep_some : 'a option t -> 'a t
259259
Same as [filter_map (fun x->x)]
260260
@since 1.0 *)
261261

262-
val keep_ok : ('a, _) Result.result t -> 'a t
262+
val keep_ok : ('a, _) result t -> 'a t
263263
(** [keep_ok l] retains only elements of the form [Ok x].
264264
@since 1.0 *)
265265

266-
val keep_error : (_, 'e) Result.result t -> 'e t
266+
val keep_error : (_, 'e) result t -> 'e t
267267
(** [keep_error l] retains only elements of the form [Error x].
268268
@since 1.0 *)
269269

src/IterLabels.mli

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,11 @@ val keep_some : 'a option t -> 'a t
227227
Same as [filter_map (fun x->x)]
228228
@since 1.0 *)
229229

230-
val keep_ok : ('a, _) Result.result t -> 'a t
230+
val keep_ok : ('a, _) result t -> 'a t
231231
(** [keep_ok l] retains only elements of the form [Ok x].
232232
@since 1.0 *)
233233

234-
val keep_error : (_, 'e) Result.result t -> 'e t
234+
val keep_error : (_, 'e) result t -> 'e t
235235
(** [keep_error l] retains only elements of the form [Error x].
236236
@since 1.0 *)
237237

src/dune

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
(public_name iter)
55
(wrapped false)
66
(modules Iter IterLabels)
7-
(flags :standard -w +a -warn-error -a+8 -nolabels)
8-
(libraries bytes result seq))
7+
(flags :standard -w +a -warn-error -a+8 -nolabels))
98

109
(env
1110
(_

0 commit comments

Comments
 (0)