Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrik-bakke committed Oct 15, 2023
1 parent eede4dc commit 6400bce
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/foundation-core/universal-property-pullbacks.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ module _
map-universal-property-pullback up-c {C'} c' =
map-inv-is-equiv (up-c C') c'

eq-map-universal-property-pullback :
compute-map-universal-property-pullback :
(up-c : {l : Level} universal-property-pullback l f g c)
{C' : UU l5} (c' : cone f g C')
cone-map f g c (map-universal-property-pullback up-c c') = c'
eq-map-universal-property-pullback up-c {C'} c' =
compute-map-universal-property-pullback up-c {C'} c' =
is-section-map-inv-is-equiv (up-c C') c'
```

Expand Down
2 changes: 1 addition & 1 deletion src/foundation/cones-over-cospans.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ open import foundation-core.whiskering-homotopies

## Idea

A **cone on a [cospan](foundation.cospans.md)** `A -f-> X <-g- B` with domain
A **cone over a [cospan](foundation.cospans.md)** `A -f-> X <-g- B` with domain
`C` is a triple `(p, q, H)` consisting of a map `p : C A`, a map `q : C B`,
and a homotopy `H` witnessing that the square

Expand Down
2 changes: 1 addition & 1 deletion src/foundation/towers.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ open import foundation.universe-levels

## Idea

A **tower of types** `f` is a [sequence](foundation.sequences.md) of types
A **tower of types** `A` is a [sequence](foundation.sequences.md) of types
together with maps between every two consecutive types

```text
Expand Down
2 changes: 1 addition & 1 deletion src/foundation/universal-property-pullbacks.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module _
htpy-eq-cone f g
( cone-map f g c (map-universal-property-pullback f g c up c'))
( c')
( eq-map-universal-property-pullback f g c up c')
( compute-map-universal-property-pullback f g c up c')
```

### Uniquely uniqueness of pullbacks
Expand Down
6 changes: 3 additions & 3 deletions src/foundation/universal-property-sequential-limits.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ module _
map-universal-property-sequential-limit up-c {Y} c' =
map-inv-is-equiv (up-c Y) c'

eq-map-universal-property-sequential-limit :
compute-map-universal-property-sequential-limit :
(up-c : {l : Level} universal-property-sequential-limit l A c)
{Y : UU l3} (c' : cone-tower A Y)
cone-map-tower A c (map-universal-property-sequential-limit up-c c') = c'
eq-map-universal-property-sequential-limit up-c {Y} c' =
compute-map-universal-property-sequential-limit up-c {Y} c' =
is-section-map-inv-is-equiv (up-c Y) c'
```

Expand Down Expand Up @@ -206,7 +206,7 @@ module _
htpy-eq-cone-tower A
( cone-map-tower A c (map-universal-property-sequential-limit A c up c'))
( c')
( eq-map-universal-property-sequential-limit A c up c')
( compute-map-universal-property-sequential-limit A c up c')
```

### Unique uniqueness of sequential limits
Expand Down

0 comments on commit 6400bce

Please sign in to comment.