From bd472ba2e0d6f0c97575b69dc9c9c6f9e3ee0469 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Sun, 10 Mar 2013 15:41:21 +0100 Subject: [PATCH] small error in comment --- sequence.ml | 2 +- sequence.mli | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sequence.ml b/sequence.ml index e29eb2b..d322fe3 100644 --- a/sequence.ml +++ b/sequence.ml @@ -23,7 +23,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *) -(** {1 Transient iterators, that abstract on a finite sequence of elements. *) +(** {1 Transient iterators, that abstract on a finite sequence of elements.} *) (** Sequence abstract iterator type *) type 'a t = ('a -> unit) -> unit diff --git a/sequence.mli b/sequence.mli index a8cf345..fa56dbf 100644 --- a/sequence.mli +++ b/sequence.mli @@ -23,7 +23,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *) -(** {1 Transient iterators, that abstract on a finite sequence of elements. *) +(** {1 Transient iterators, that abstract on a finite sequence of elements.} *) (** The iterators are designed to allow easy transfer (mappings) between data structures, without defining n^2 conversions between the n types. The