aboutsummaryrefslogtreecommitdiff
path: root/proofs
diff options
context:
space:
mode:
authorcoqbot-app[bot]2021-01-18 08:06:55 +0000
committerGitHub2021-01-18 08:06:55 +0000
commit3efb7a44dee255cd8f6cbd8c80e3c48c601104ed (patch)
tree0360a9e8a64520f15a612c97e9cfc7d929c41213 /proofs
parent888f03e827a6398936b75ee89f0d0db57e1d86c7 (diff)
parent3da2dbe9728ae7f5b1860a8e3a6c458e6d976f84 (diff)
Merge PR #13656: Avoid using "subgoals" in the UI, it means the same as "goals"
Reviewed-by: Zimmi48
Diffstat (limited to 'proofs')
-rw-r--r--proofs/proof_bullet.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/proof_bullet.ml b/proofs/proof_bullet.ml
index 41cb7399da..dc5a1b0ac2 100644
--- a/proofs/proof_bullet.ml
+++ b/proofs/proof_bullet.ml
@@ -68,7 +68,7 @@ module Strict = struct
match sugg with
| NeedClosingBrace -> Pp.(str"Try unfocusing with \"}\".")
| NoBulletInUse -> assert false (* This should never raise an error. *)
- | ProofFinished -> Pp.(str"No more subgoals.")
+ | ProofFinished -> Pp.(str"No more goals.")
| Suggest b -> Pp.(str"Expecting " ++ pr_bullet b ++ str".")
| Unfinished b -> Pp.(str"Current bullet " ++ pr_bullet b ++ str" is not finished.")