aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--interp/symbols.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/interp/symbols.ml b/interp/symbols.ml
index 5c9e003682..b54c3323b7 100644
--- a/interp/symbols.ml
+++ b/interp/symbols.ml
@@ -270,7 +270,7 @@ let declare_notation_interpretation ntn scopt pat df pp8only =
let scope = match scopt with Some s -> s | None -> default_scope in
let sc = find_scope scope in
if Stringmap.mem ntn sc.notations && Options.is_verbose () then
- warning ("Notation "^ntn^" is already used"^
+ warning ("Notation "^ntn^" was already used"^
(if scopt = None then "" else " in scope "^scope));
let sc = { sc with notations = Stringmap.add ntn (pat,df,pp8only) sc.notations } in
scope_map := Stringmap.add scope sc !scope_map;