diff options
| author | Pierre-Marie Pédrot | 2015-02-26 14:31:25 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2015-02-26 14:38:09 +0100 |
| commit | 15a3b57db10e61c9de12b5880b04b46db1494b5b (patch) | |
| tree | 7c1f64ab00de98e7b23ac8a88b74a57a614c2470 /tactics/tactics.ml | |
| parent | f712a0523359d5b54b4d4160bc77271fdde094a3 (diff) | |
Fixing printing of ordinals.
Diffstat (limited to 'tactics/tactics.ml')
| -rw-r--r-- | tactics/tactics.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml index 013270b0bd..ccf4795d68 100644 --- a/tactics/tactics.ml +++ b/tactics/tactics.ml @@ -882,7 +882,7 @@ let msg_quantified_hypothesis = function | NamedHyp id -> str "quantified hypothesis named " ++ pr_id id | AnonHyp n -> - int n ++ str (match n with 1 -> "st" | 2 -> "nd" | _ -> "th") ++ + pr_nth n ++ str " non dependent hypothesis" let depth_of_quantified_hypothesis red h gl = |
