diff options
author | Pierre Letouzey <pierre.letouzey@inria.fr> | 2016-05-04 12:08:30 +0200 |
---|---|---|
committer | Pierre Letouzey <pierre.letouzey@inria.fr> | 2016-05-04 12:08:30 +0200 |
commit | 174fd1f853f47d24b350a53e7f186ab37829dc2a (patch) | |
tree | c2a4fee573576c7b1bfbc306d185f17fe8a57786 | |
parent | 8af2e5223dfe84c87d7943c2db0cd6b62e8a4635 (diff) |
Int.v: simplify Jason's commit 5b4e3ace
-rw-r--r-- | theories/ZArith/Int.v | 6 |
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. |