missing @since annotation; typo

This commit is contained in:
Simon Cruanes 2015-05-25 14:42:31 +02:00
parent 0c624461d5
commit 4f4f67fa46
2 changed files with 3 additions and 2 deletions

View file

@ -26,7 +26,7 @@ What is _containers_?
be able to deal with your favorite unicode library). be able to deal with your favorite unicode library).
- A sub-library with complicated abstractions, `containers.advanced` (with - A sub-library with complicated abstractions, `containers.advanced` (with
a LINQ-like query module, batch operations using GADTs, and others). 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) sub-processes)
- A bigstring module using `bigarray` in `containers.bigarray` - A bigstring module using `bigarray` in `containers.bigarray`
- A lightweight S-expression printer and streaming parser in `containers.sexp` - A lightweight S-expression printer and streaming parser in `containers.sexp`

View file

@ -195,7 +195,8 @@ module type S = sig
val of_array : Array.t -> t val of_array : Array.t -> t
(** Create a buffer from an initial array, but doesn't take ownership (** 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 val to_array : t -> Array.t
(** Create an array from the elements, in order. (** Create an array from the elements, in order.