aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/ZArith
diff options
context:
space:
mode:
Diffstat (limited to 'theories/ZArith')
-rw-r--r--theories/ZArith/Int.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/theories/ZArith/Int.v b/theories/ZArith/Int.v
index b78891c71..143d3c8db 100644
--- a/theories/ZArith/Int.v
+++ b/theories/ZArith/Int.v
@@ -452,7 +452,7 @@ Module Z_as_Int <: Int.
Proof. reflexivity. Qed.
(** Compatibility notations for Coq v8.4 *)
- Notation plus := Coq.ZArith.Int.Z_as_Int.add (compat "8.4").
- Notation minus := Coq.ZArith.Int.Z_as_Int.sub (compat "8.4").
- Notation mult := Coq.ZArith.Int.Z_as_Int.mul (compat "8.4").
+ Notation plus := add (compat "8.4").
+ Notation minus := sub (compat "8.4").
+ Notation mult := mul (compat "8.4").
End Z_as_Int.