Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
plt-amy committed Sep 12, 2024
1 parent 69bc402 commit 529acbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/Data/Rational/Properties.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ abstract

/ℚ-frac
: {n d} ⦃ p : ℤ.Positive d ⦄
(let instance _ = to-nonzero-frac (ℤ.positive→nonzero p))
(n / 1) /ℚ (d / 1) ≡ (n / d)
/ℚ-frac {n} {d = ℤ.possuc x} ⦃ p = ℤ.pos x ⦄ = quotℚ (to-same-rational (sym (ℤ.*ℤ-associative n 1 (ℤ.possuc x))))

Expand Down
4 changes: 2 additions & 2 deletions src/Prim/Data/Sigma.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ syntax Σ-syntax X (λ x → F) = Σ[ x ∈ X ] F
infix 4 Σ-syntax

instance
make-Σ : {ℓ ℓ'} {A : Type ℓ} {B : A Type ℓ'} ⦃ x : A ⦄ ⦃ y : B x ⦄ Σ A B
make-Σ ⦃ x ⦄ ⦃ y ⦄ = x , y
Σ-of-instances : {ℓ ℓ'} {A : Type ℓ} {B : A Type ℓ'} ⦃ x : A ⦄ ⦃ y : B x ⦄ Σ A B
Σ-of-instances ⦃ x ⦄ ⦃ y ⦄ = x , y
```
-->

Expand Down

0 comments on commit 529acbe

Please sign in to comment.