From 54803416ffd71c57c807e83c5e6f87a35d14276a Mon Sep 17 00:00:00 2001 From: Anders Fugmann Date: Thu, 28 Nov 2024 22:53:52 +0100 Subject: [PATCH] Fix documentation --- aws-s3/types.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws-s3/types.ml b/aws-s3/types.ml index 28a3dee..dd3b9e3 100644 --- a/aws-s3/types.ml +++ b/aws-s3/types.ml @@ -48,7 +48,7 @@ module type Io = sig (** Create a writer given a function f that reads off the writer. Once f completes, the writer is closed *) val create_writer : f:('a reader -> unit Deferred.t) -> 'a writer - (** Create a reader/writer pipe. Data written to the reader can be read by the writer. + (** Create a reader/writer pipe. Data written to the writer can be read by the reader. Closing one end will close both ends. *) val create : unit -> 'a reader * 'a writer