From d6b1a62201ef2b76f97433858068caf943168df4 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 25 Jun 2015 10:05:31 +0200 Subject: [PATCH] more doc --- doc/intro.txt | 2 +- src/bigarray/CCArray1.mli | 1 + src/data/CCGraph.mli | 2 ++ src/data/CCHashconsedSet.mli | 6 ++++-- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/doc/intro.txt b/doc/intro.txt index 5b68eb1f..12065679 100644 --- a/doc/intro.txt +++ b/doc/intro.txt @@ -111,7 +111,7 @@ Iterators: Use bigarrays to hold large strings and map files directly into memory. -{!modules: CCBigstring} +{!modules: CCBigstring CCArray1} {4 Advanced} diff --git a/src/bigarray/CCArray1.mli b/src/bigarray/CCArray1.mli index ce507c30..62643361 100644 --- a/src/bigarray/CCArray1.mli +++ b/src/bigarray/CCArray1.mli @@ -26,6 +26,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. (** {1 Bigarrays of dimension 1} + {b status: unstable} @since NEXT_RELEASE *) (** {2 used types} *) diff --git a/src/data/CCGraph.mli b/src/data/CCGraph.mli index a7adf6ba..3fb3bff4 100644 --- a/src/data/CCGraph.mli +++ b/src/data/CCGraph.mli @@ -42,6 +42,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. from a given vertex), she can use [Seq.return x] to build a sequence of one element. + {b status: unstable} + @since NEXT_RELEASE *) type 'a sequence = ('a -> unit) -> unit diff --git a/src/data/CCHashconsedSet.mli b/src/data/CCHashconsedSet.mli index a856d445..d9ef01a7 100644 --- a/src/data/CCHashconsedSet.mli +++ b/src/data/CCHashconsedSet.mli @@ -29,8 +29,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Sets are hashconsed, so that set equality is physical equality. Some sub-structure that is common to several sets is also perfectly shared. -{b status: unstable} -@since NEXT_RELEASE *) + {b status: unstable} + + @since NEXT_RELEASE +*) module type ELT = sig type t