Fix test for #7397

This commit is contained in:
John MacFarlane 2021-06-21 09:30:23 -07:00
parent 82ad855f38
commit a39313eddb

View file

@ -1,4 +1,4 @@
```
````
% pandoc -t markdown
~~~~ { .haskell startFrom="100"}
qsort [] = []
@ -11,4 +11,4 @@ qsort [] = []
qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++
qsort (filter (>= x) xs)
```
```
````