From f529c4f4bf63ffc49d205651d29912b5c64b8a5a Mon Sep 17 00:00:00 2001
From: Robbert Krebbers <mail@robbertkrebbers.nl>
Date: Tue, 12 Nov 2019 23:26:05 +0100
Subject: [PATCH] Remove space before `;;` in format directive.

The space should not be there and was added in oversight. This also provides
forwards compatibility with https://github.com/coq/coq/pull/10832.
---
 theories/heap_lang/notation.v | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/theories/heap_lang/notation.v b/theories/heap_lang/notation.v
index 07e5df432..0948a57f9 100644
--- a/theories/heap_lang/notation.v
+++ b/theories/heap_lang/notation.v
@@ -137,7 +137,7 @@ Notation "'let:' x := e1 'in' e2" := (Lam x%binder e2%E e1%E)
    format "'[' 'let:'  x  :=  '[' e1 ']'  'in'  '/' e2 ']'") : expr_scope.
 Notation "e1 ;; e2" := (Lam BAnon e2%E e1%E)
   (at level 100, e2 at level 200,
-   format "'[' '[hv' '[' e1 ']'  ;;  ']' '/' e2 ']'") : expr_scope.
+   format "'[' '[hv' '[' e1 ']' ;;  ']' '/' e2 ']'") : expr_scope.
 
 (* Shortcircuit Boolean connectives *)
 Notation "e1 && e2" :=
-- 
GitLab