Skip to content

Commit 5ca06d9

Browse files
committed
Remove obsolete comment
1 parent f9a96d7 commit 5ca06d9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/Data/TreeDiff/List.hs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ instance NFData a => NFData (Edit a) where
4141
-- prop> \xs ys -> length (diffBy (==) xs ys) >= max (length xs) (length (ys :: String))
4242
-- prop> \xs ys -> length (diffBy (==) xs ys) <= length xs + length (ys :: String)
4343
--
44-
-- /Note:/ currently this has O(n*m) memory requirements, for the sake
45-
-- of more obviously correct implementation.
46-
--
4744
diffBy :: forall a. Show a => (a -> a -> Bool) -> [a] -> [a] -> [Edit a]
4845
diffBy _ [] [] = []
4946
diffBy _ [] ys' = map Ins ys'

0 commit comments

Comments
 (0)