diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-06-30 10:49:27 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-06-30 10:49:27 +0200 |
commit | 362858202e880e8787127bc4a29bfbfeed822c58 (patch) | |
tree | 7ec9d747718e874dc7938acd722df7876551702f /src/Data/Array/Nested/Permutation.hs | |
parent | 64c47540bdcf764f6ac3644cabac00e9605c3fa7 (diff) |
Cross-package doc links are half-broken, let's not
Diffstat (limited to 'src/Data/Array/Nested/Permutation.hs')
-rw-r--r-- | src/Data/Array/Nested/Permutation.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Data/Array/Nested/Permutation.hs b/src/Data/Array/Nested/Permutation.hs index af9efed..03d1640 100644 --- a/src/Data/Array/Nested/Permutation.hs +++ b/src/Data/Array/Nested/Permutation.hs @@ -36,8 +36,8 @@ import Data.Array.Nested.Types -- * Permutations -- | A "backward" permutation of a dimension list. The operation on the --- dimension list is most similar to 'Data.Vector.backpermute'; see 'Permute' --- for code that implements this. +-- dimension list is most similar to @backpermute@ in the @vector@ package; see +-- 'Permute' for code that implements this. data Perm list where PNil :: Perm '[] PCons :: SNat a -> Perm l -> Perm (a : l) |