Skip to content

Commit 90900f9

Browse files
fun_scope -> function_scope (#37)
1 parent e9eb737 commit 90900f9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

htt/model.v

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1326,10 +1326,10 @@ Definition vfun' A (f : A -> heap -> Prop) : post A :=
13261326
fun y i => if y is Val v then f v i else False.
13271327

13281328
Notation "[ 'vfun' x => p ]" := (vfun' (fun x => p))
1329-
(at level 0, x name, format "[ 'vfun' x => p ]") : fun_scope.
1329+
(at level 0, x name, format "[ 'vfun' x => p ]") : function_scope.
13301330
Notation "[ 'vfun' x : aT => p ]" := (vfun' (fun (x : aT) => p))
1331-
(at level 0, x name, only parsing) : fun_scope.
1331+
(at level 0, x name, only parsing) : function_scope.
13321332
Notation "[ 'vfun' x i => p ]" := (vfun' (fun x i => p))
1333-
(at level 0, x name, format "[ 'vfun' x i => p ]") : fun_scope.
1333+
(at level 0, x name, format "[ 'vfun' x i => p ]") : function_scope.
13341334
Notation "[ 'vfun' ( x : aT ) i => p ]" := (vfun' (fun (x : aT) i => p))
1335-
(at level 0, x name, only parsing) : fun_scope.
1335+
(at level 0, x name, only parsing) : function_scope.

0 commit comments

Comments
 (0)