diff options
-rw-r--r-- | otherlibs/labltk/browser/README | 4 | ||||
-rw-r--r-- | stdlib/stdLabels.mli | 10 |
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" |