From 4f4f67fa4634f4e670b02aa1d907542a455d5bf1 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Mon, 25 May 2015 14:42:31 +0200 Subject: [PATCH] missing `@since` annotation; typo --- README.md | 2 +- src/data/CCRingBuffer.mli | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 22e9560b..0be9254d 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ What is _containers_? be able to deal with your favorite unicode library). - A sub-library with complicated abstractions, `containers.advanced` (with a LINQ-like query module, batch operations using GADTs, and others). -- Utilities aroud the `unix` library in `containers.unix` (mainly to spawn +- Utilities around the `unix` library in `containers.unix` (mainly to spawn sub-processes) - A bigstring module using `bigarray` in `containers.bigarray` - A lightweight S-expression printer and streaming parser in `containers.sexp` diff --git a/src/data/CCRingBuffer.mli b/src/data/CCRingBuffer.mli index 2c7cdbb3..b657f47a 100644 --- a/src/data/CCRingBuffer.mli +++ b/src/data/CCRingBuffer.mli @@ -195,7 +195,8 @@ module type S = sig val of_array : Array.t -> t (** Create a buffer from an initial array, but doesn't take ownership - of it (stills allocates a new internal array) *) + of it (stills allocates a new internal array) + @since 0.11 *) val to_array : t -> Array.t (** Create an array from the elements, in order.