aboutsummaryrefslogtreecommitdiff
path: root/theories/Program/Basics.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Program/Basics.v')
-rw-r--r--theories/Program/Basics.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Program/Basics.v b/theories/Program/Basics.v
index 8f1f26dbcd..a5e560c891 100644
--- a/theories/Program/Basics.v
+++ b/theories/Program/Basics.v
@@ -25,7 +25,7 @@ Definition compose {A B C} (g : B -> C) (f : A -> B) := fun x : A => g (f x).
Hint Unfold compose.
-Notation " g ∘ f " := (compose g f) (at level 50, left associativity) : program_scope.
+Notation " g ∘ f " := (compose g f) (at level 40, left associativity) : program_scope.
Open Local Scope program_scope.