Skip to content

Commit dfce04f

Browse files
committed
refactor: use module ; rectify exported names
1 parent 6d725fd commit dfce04f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Function/Bundles.agda

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ module _ (From : Setoid a ℓ₁) (To : Setoid b ℓ₂) where
113113
using
114114
( strictlySurjective
115115
; section
116-
; section-inverseˡ
117-
; section-strictInverseˡ
116+
; inverseˡ
117+
; strictlyInverseˡ
118118
)
119119

120120
to⁻ : B A
@@ -125,10 +125,10 @@ module _ (From : Setoid a ℓ₁) (To : Setoid b ℓ₂) where
125125
#-}
126126

127127
to∘to⁻ : StrictlyInverseˡ _≈₂_ to section
128-
to∘to⁻ = section-strictInverseˡ
128+
to∘to⁻ = strictlyInverseˡ
129129
{-# WARNING_ON_USAGE to∘to⁻
130130
"Warning: to∘to⁻ was deprecated in v2.3.
131-
Please use Function.Structures.IsSurjection.section-strictInverseˡ instead. "
131+
Please use Function.Structures.IsSurjection.strictlyInverseˡ instead. "
132132
#-}
133133

134134

@@ -162,8 +162,8 @@ module _ (From : Setoid a ℓ₁) (To : Setoid b ℓ₂) where
162162
using (isSurjection
163163
; strictlySurjective
164164
; section
165-
; section-inverseˡ
166-
; section-strictInverseˡ
165+
; inverseˡ
166+
; strictlyInverseˡ
167167
)
168168

169169
isBijection : IsBijection to

0 commit comments

Comments
 (0)