Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Bug-fixes

* Fix a typo in `Algebra.Morphism.Construct.DirectProduct`.

* Fix a typo in `Function.Construct.Constant`.

Non-backwards compatible changes
--------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/Function/Construct/Constant.agda
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module _
------------------------------------------------------------------------
-- Setoid bundles

module _ (S : Setoid a ℓ) (T : Setoid b ℓ₂) where
module _ (S : Setoid a ℓ) (T : Setoid b ℓ₂) where
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm happy with this as well.

The operation is recommended as the replacement for the deprecated Function.Equality.const, which did have a more Level-polymorphic type, so I think that this one should as well.

That said, there do not seem to be any other uses of either operation in stdlib, so it's a bit hard to tell what the client consequences of this might be, but... absent telepathy, not much we can do about that!


open Setoid

Expand Down