diff options
author | Greg Brown <greg.brown01@ed.ac.uk> | 2022-12-06 13:50:12 +0000 |
---|---|---|
committer | Greg Brown <greg.brown01@ed.ac.uk> | 2022-12-06 13:50:12 +0000 |
commit | 121965c3e550f285d3a428cbb6da10c97bfa9846 (patch) | |
tree | fccec8224b7aae2fcf421e01b4440899ae45d22d /src/Data/Setoid/Product.idr | |
parent | df7df335a91878448a9f231c0af36f57874ccd4e (diff) |
refactor: rename pwSetoid -> Product.
Diffstat (limited to 'src/Data/Setoid/Product.idr')
-rw-r--r-- | src/Data/Setoid/Product.idr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Data/Setoid/Product.idr b/src/Data/Setoid/Product.idr index 90510e5..6693d40 100644 --- a/src/Data/Setoid/Product.idr +++ b/src/Data/Setoid/Product.idr @@ -68,8 +68,8 @@ pwEquivalence eq = MkIndexedEquivalence } public export -pwSetoid : IndexedSetoid a -> IndexedSetoid (List a) -pwSetoid x = MkIndexedSetoid ((^) x.U) (pwEquivalence x.equivalence) +Product : IndexedSetoid a -> IndexedSetoid (List a) +Product x = MkIndexedSetoid ((^) x.U) (pwEquivalence x.equivalence) -- Introductors and Eliminators |