From 22c9327cfca2f970425d636f85565403aeb16cce Mon Sep 17 00:00:00 2001 From: Levi Botelho Date: Thu, 12 Nov 2015 21:27:53 +0100 Subject: [PATCH] Remove extraneous forward slash in iterAsync documentation comment --- src/FSharp.Control.AsyncSeq/AsyncSeq.fsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FSharp.Control.AsyncSeq/AsyncSeq.fsi b/src/FSharp.Control.AsyncSeq/AsyncSeq.fsi index d969f11..dcb3395 100644 --- a/src/FSharp.Control.AsyncSeq/AsyncSeq.fsi +++ b/src/FSharp.Control.AsyncSeq/AsyncSeq.fsi @@ -161,7 +161,7 @@ module AsyncSeq = /// Iterates over the input sequence and calls the specified asynchronous function for /// every value. The input sequence will be asked for the next element after - //// the processing of an element completes. + /// the processing of an element completes. val iterAsync : action:('T -> Async) -> source:AsyncSeq<'T> -> Async /// Returns an asynchronous sequence that returns pairs containing an element