aboutsummaryrefslogtreecommitdiff
path: root/theories/Logic/RelationalChoice.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Logic/RelationalChoice.v')
-rw-r--r--theories/Logic/RelationalChoice.v10
1 files changed, 5 insertions, 5 deletions
diff --git a/theories/Logic/RelationalChoice.v b/theories/Logic/RelationalChoice.v
index c55095e473..12c3f746a0 100644
--- a/theories/Logic/RelationalChoice.v
+++ b/theories/Logic/RelationalChoice.v
@@ -13,8 +13,8 @@
Axiom
relational_choice :
forall (A B:Type) (R:A -> B -> Prop),
- (forall x:A, exists y : B | R x y) ->
- exists R' : A -> B -> Prop
- | (forall x:A,
- exists y : B
- | R x y /\ R' x y /\ (forall y':B, R' x y' -> y = y')). \ No newline at end of file
+ (forall x:A, exists y : B, R x y) ->
+ exists R' : A -> B -> Prop,
+ (forall x:A,
+ exists y : B,
+ R x y /\ R' x y /\ (forall y':B, R' x y' -> y = y')).