Skip to content

Commit

Permalink
Fix a minor grammar mistake in Structure.agda
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreckYe committed Sep 21, 2023
1 parent f3cf89d commit 7c9714c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cubical/Foundations/Structure.agda
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ private
S : Type ℓ Type ℓ'

-- A structure is a type-family S : Type ℓ → Type ℓ', i.e. for X : Type ℓ and s : S X,
-- the pair (X , s) : TypeWithStr ℓ S means that X is equipped with a S-structure, witnessed by s.
-- the pair (X , s) : TypeWithStr ℓ S means that X is equipped with an S-structure, witnessed by s.

TypeWithStr : (ℓ : Level) (S : Type ℓ Type ℓ') Type (ℓ-max (ℓ-suc ℓ) ℓ')
TypeWithStr ℓ S = Σ[ X ∈ Type ℓ ] S X
Expand Down

0 comments on commit 7c9714c

Please sign in to comment.