diff --git a/program_logic/model.v b/program_logic/model.v
index 117809723654822129b0c2412aad243823dd6b1e..1beabfcd56a42a8029f4421783f416e44b0d31fb 100644
--- a/program_logic/model.v
+++ b/program_logic/model.v
@@ -5,7 +5,7 @@ From iris.algebra Require cofe_solver.
 (** In this file we construct the type [iProp] of propositions of the Iris
 logic. This is done by solving the following recursive domain equation:
 
-  iProp ≈ uPred { i : gid  &  gname -fin-> (Σ i) iProp }
+  iProp ≈ uPred (∀ i : gid, gname -fin-> (Σ i) iProp)
 
 where:
 
@@ -44,7 +44,7 @@ Coercion gFunctors_lookup : gFunctors >-> Funclass.
 
 Definition gname := positive.
 
-(** The resources functor [iResF Σ A := { i : gid & gname -fin-> (Σ i) A }]. *)
+(** The resources functor [iResF Σ A := ∀ i : gid, gname -fin-> (Σ i) A]. *)
 Definition iResF (Σ : gFunctors) : urFunctor :=
   iprodURF (λ i, gmapURF gname (Σ i)).