aboutsummaryrefslogtreecommitdiff
path: root/src/Util/ZRange.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-06-12 16:40:53 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-06-12 16:40:53 -0400
commit070a400ddbf94190fb1f6dbdd36a81d2afb80c32 (patch)
tree8234a7758f52d42bb978c79f128a8e65656c8a7a /src/Util/ZRange.v
parent4107ed987a8a89246a11e548b171d948ed216103 (diff)
Fix zrange notation levels
So that it doesn't interfere with [~> R] and [A ~> B].
Diffstat (limited to 'src/Util/ZRange.v')
-rw-r--r--src/Util/ZRange.v3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Util/ZRange.v b/src/Util/ZRange.v
index 489d2c32f..b6381f421 100644
--- a/src/Util/ZRange.v
+++ b/src/Util/ZRange.v
@@ -56,7 +56,6 @@ Defined.
Module Export Notations.
Delimit Scope zrange_scope with zrange.
- Notation "r[ l ~> u ]" := {| lower := l ; upper := u |}
- (format "r[ l ~> u ]") : zrange_scope.
+ Notation "r[ l ~> u ]" := {| lower := l ; upper := u |} : zrange_scope.
Infix "<=?" := is_tighter_than_bool : zrange_scope.
End Notations.