doc: fix a typo in Pairwise doc (#9375)

doc: fix a typo in Pairwise doc

This PR fixes a sentence in the Pairwise doc in List/Basic
This commit is contained in:
Filippo A. E. Nuccio 2025-07-15 13:39:02 +02:00 committed by GitHub
parent 6e9bc1359d
commit 08d8bed022
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1369,7 +1369,7 @@ Each element of a list is related to all later elements of the list by `R`.
`Pairwise R l` means that all the elements of `l` with earlier indexes are `R`-related to all the
elements with later indexes.
For example, `Pairwise (· ≠ ·) l` asserts that `l` has no duplicates, and if `Pairwise (· < ·) l`
For example, `Pairwise (· ≠ ·) l` asserts that `l` has no duplicates, and `Pairwise (· < ·) l`
asserts that `l` is (strictly) sorted.
Examples: