summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2001-09-27 08:24:50 +0000
committerJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2001-09-27 08:24:50 +0000
commit42c72b10d61a658109375b4042ac10dcfed91bf0 (patch)
treebddc9b399781a6d1d492d107ed42b724a82a1554
parent4cf25f9e3e5f512bf058a213a4bff7e54afee01c (diff)
documentation
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3802 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--otherlibs/labltk/browser/README4
-rw-r--r--stdlib/stdLabels.mli10
2 files changed, 10 insertions, 4 deletions
diff --git a/otherlibs/labltk/browser/README b/otherlibs/labltk/browser/README
index e48ba6f9c..e8953541b 100644
--- a/otherlibs/labltk/browser/README
+++ b/otherlibs/labltk/browser/README
@@ -98,7 +98,7 @@ USE
C-s opens a text search dialog for the displayed signature.
-c) File editor
+2) Editor
You can edit files with it, but there is no auto-save nor undo at
the moment. Otherwise you can use it as a browser, making
occasional corrections.
@@ -127,7 +127,7 @@ c) File editor
Signature shows the signature of the current file.
-d) Shell
+3) Shell
When you create a shell, a dialog is presented to you, letting you
choose which command you want to run, and the title of the shell
(to choose it in the Editor).
diff --git a/stdlib/stdLabels.mli b/stdlib/stdLabels.mli
index 0bcc6fba2..a36de429a 100644
--- a/stdlib/stdLabels.mli
+++ b/stdlib/stdLabels.mli
@@ -12,8 +12,14 @@
(* $Id$ *)
-(* Module [StdLabels]: meta-module for labelled libraries *)
-(* See the real interfaces in ArrayLabels, ListLabels and StringLabels *)
+(* Module [StdLabels]: standard labeled libraries *)
+
+(* This meta-module provides labelized version of the [Array],
+ [List] and [String] modules.
+
+ They only differ by their labels. Detailed interfaces can be found
+ in [arrayLabels.mli], [listLabels.mli] and [stringLabels.mli].
+*)
module Array : sig
external length : 'a array -> int = "%array_length"