Skip to content

two whitespace violations #1922

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 9, 2023
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: 1 addition & 1 deletion CHANGELOG/v1.7.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ The library has been tested using Agda 2.6.3.

* In accordance with changes to the flags in Agda 2.6.3, all modules that previously used
the `--without-K` flag now use the `--cubical-compatible` flag instead.

* Updated the code using `primFloatToWord64` - the library API has remained unchanged.
2 changes: 1 addition & 1 deletion src/Data/List/Membership/Setoid/Properties.agda
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ module _ (S : Setoid c ℓ) where
length (mapWith∈ xs f) ≡ length xs
length-mapWith∈ [] = P.refl
length-mapWith∈ (x ∷ xs) = P.cong suc (length-mapWith∈ xs)

mapWith∈-id : ∀ xs → mapWith∈ xs (λ {x} _ → x) ≡ xs
mapWith∈-id [] = P.refl
mapWith∈-id (x ∷ xs) = P.cong (x ∷_) (mapWith∈-id xs)
Expand Down