aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/library.ml
diff options
context:
space:
mode:
authorGravatar regisgia <regisgia@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-08-27 09:50:38 +0000
committerGravatar regisgia <regisgia@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-08-27 09:50:38 +0000
commit843c4cbacc1425086e2fc929995284406838dac1 (patch)
tree1082e3ea4940e491bd90c775f91a1368f5d105a7 /library/library.ml
parentf8bb38326c4fcf8b70da1670d832efd12d667928 (diff)
* library/Library: Reformulate a comment.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13382 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/library.ml')
-rw-r--r--library/library.ml11
1 files changed, 5 insertions, 6 deletions
diff --git a/library/library.ml b/library/library.ml
index 22fecdf63..c1673925c 100644
--- a/library/library.ml
+++ b/library/library.ml
@@ -634,12 +634,11 @@ let save_library_to dir f =
try
System.marshal_out ch md;
flush ch;
- (* The table of opaque definitions must be loaded only at will
- whereas the digest is loaded all the time. As a consequence,
- the digest must be serialized before the table (if we want to
- keep the current simple layout of .vo files). This also entails
- that the digest does not take opaque terms into account
- anymore. *)
+ (* The loading of the opaque definitions table is optional whereas
+ the digest is loaded all the time. As a consequence, the digest
+ must be serialized before the table (if we want to keep the
+ current simple layout of .vo files). This also entails that the
+ digest does not take opaque terms into account anymore. *)
let di = Digest.file f' in
System.marshal_out ch di;
System.marshal_out ch table;