aboutsummaryrefslogtreecommitdiff
path: root/ide/document.mli
diff options
context:
space:
mode:
authorGaëtan Gilbert2019-11-21 16:46:11 +0100
committerGaëtan Gilbert2019-11-21 16:46:11 +0100
commitc0f34539209842735ccb93f3c069632b7eee4d6c (patch)
tree32cd948273f79a2c01ad27b4ed0244ea60d7e2f9 /ide/document.mli
parentb680b06b31c27751a7d551d95839aea38f7fbea1 (diff)
parentd016f69818b30b75d186fb14f440b93b0518fc66 (diff)
Merge PR #11010: [coq] Untabify the whole ML codebase.
Reviewed-by: SkySkimmer Reviewed-by: herbelin
Diffstat (limited to 'ide/document.mli')
-rw-r--r--ide/document.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/ide/document.mli b/ide/document.mli
index eea250bd50..c0cc848bd7 100644
--- a/ide/document.mli
+++ b/ide/document.mli
@@ -11,7 +11,7 @@
(* An 'a document is a structure to hold and manipulate list of sentences.
Sentences are equipped with an id = Stateid.t and can carry arbitrary
data ('a).
-
+
When added (push) to the document, a sentence has no id, it has
be manually assigned just afterward or the sentence has to be removed
(pop) before any other sentence can be pushed.
@@ -21,7 +21,7 @@
sentence in question, and it is simpler if the sentence is in the document.
Only the functions pop, find, fold_all and find_map can be called on a
document with a tip that has no id (and assign_tip_id of course).
-
+
The document can be focused (non recursively) to a zone. After that
some functions operate on the focused zone only. When unfocused the
context (the part of the document out of focus) is restored.