aboutsummaryrefslogtreecommitdiff
path: root/plugins/ssr
diff options
context:
space:
mode:
authorJim Fehrle2020-12-17 15:04:36 -0800
committerJim Fehrle2021-01-13 15:24:23 -0800
commit3da2dbe9728ae7f5b1860a8e3a6c458e6d976f84 (patch)
treed9c17317be7ff621361ad1663b43efa5779dff39 /plugins/ssr
parentb8a3ebaa9695596f062298f5913ae4f4debb0124 (diff)
Avoid using "subgoals" in the UI, it means the same as "goals"
Diffstat (limited to 'plugins/ssr')
-rw-r--r--plugins/ssr/ssrtacticals.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ssr/ssrtacticals.ml b/plugins/ssr/ssrtacticals.ml
index cbc352126e..c822675589 100644
--- a/plugins/ssr/ssrtacticals.ml
+++ b/plugins/ssr/ssrtacticals.ml
@@ -40,7 +40,7 @@ let tclPERM perm tac =
let rot_hyps dir i hyps =
let n = List.length hyps in
if i = 0 then List.rev hyps else
- if i > n then CErrors.user_err (Pp.str "Not enough subgoals") else
+ if i > n then CErrors.user_err (Pp.str "Not enough goals") else
let rec rot i l_hyps = function
| hyp :: hyps' when i > 0 -> rot (i - 1) (hyp :: l_hyps) hyps'
| hyps' -> hyps' @ (List.rev l_hyps) in