aboutsummaryrefslogtreecommitdiff
path: root/src/Util/LetIn.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jasongross9@gmail.com>2016-09-19 12:04:56 -0700
committerGravatar GitHub <noreply@github.com>2016-09-19 12:04:56 -0700
commit8e448c450e98a99f074599f0ffe8f1b48db2df14 (patch)
treed7db90c4b3193c3a915d954f9bb374c9213bdedd /src/Util/LetIn.v
parentb6b4e91f9c957b5febc8c18de5228852758bede5 (diff)
Change [Let ... in ...] to [dlet ... in ...] (#67)
For "definition". This fixes #65; [Let] conflicts with the vernacular [Let] in Coq 8.4.
Diffstat (limited to 'src/Util/LetIn.v')
-rw-r--r--src/Util/LetIn.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Util/LetIn.v b/src/Util/LetIn.v
index a15204c96..d94674f2f 100644
--- a/src/Util/LetIn.v
+++ b/src/Util/LetIn.v
@@ -3,7 +3,7 @@ Require Import Crypto.Util.Tactics.
Require Import Crypto.Util.Notations.
Definition Let_In {A P} (x : A) (f : forall a : A, P a) : P x := let y := x in f y.
-Notation "'Let' x := y 'in' f" := (Let_In y (fun x => f)).
+Notation "'dlet' x := y 'in' f" := (Let_In y (fun x => f)).
Global Instance Proper_Let_In_nd_changebody {A P R} {Reflexive_R:@Reflexive P R}
: Proper (eq ==> pointwise_relation _ R ==> R) (@Let_In A (fun _ => P)).