aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-08-02 13:38:03 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-08-02 13:38:03 +0000
commitf460091e829c731a91170866f9019695a12d256c (patch)
tree098e6764c965f54c83f1194a7288194814e3d108
parent505284b57bff03d22d55c31df11733fdd687f602 (diff)
Small typo in Print Debug GC
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16652 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--toplevel/mltop.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/toplevel/mltop.ml b/toplevel/mltop.ml
index 1e0bbbcf3..ca4a5f648 100644
--- a/toplevel/mltop.ml
+++ b/toplevel/mltop.ml
@@ -364,7 +364,7 @@ let print_gc () =
let msg =
str "minor words: " ++ real stat.Gc.minor_words ++ fnl () ++
str "promoted words: " ++ real stat.Gc.promoted_words ++ fnl () ++
- str "major words :" ++ real stat.Gc.major_words ++ fnl () ++
+ str "major words: " ++ real stat.Gc.major_words ++ fnl () ++
str "minor_collections: " ++ int stat.Gc.minor_collections ++ fnl () ++
str "major_collections: " ++ int stat.Gc.major_collections ++ fnl () ++
str "heap_words: " ++ int stat.Gc.heap_words ++ fnl () ++