From 4b60db1ad4701ab149ed9641aa8568b6ae797a09 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus <oleg.grenrus@iki.fi> Date: Sat, 20 Mar 2021 03:48:13 +0200 Subject: [PATCH] Specialization of Data.List --- html-test/ref/BundledPatterns.html | 2 +- html-test/ref/BundledPatterns2.html | 2 +- html-test/ref/Identifiers.html | 18 +++++++++--------- hypsrc-test/Main.hs | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/html-test/ref/BundledPatterns.html b/html-test/ref/BundledPatterns.html index 82f58e4947..8ac16a689d 100644 --- a/html-test/ref/BundledPatterns.html +++ b/html-test/ref/BundledPatterns.html @@ -152,7 +152,7 @@ > subscript starting from 0 and ending at <code ><code - ><a href="#" title="Data.List" + ><a href="#" title="Data.Foldable" >length</a ></code > - 1</code diff --git a/html-test/ref/BundledPatterns2.html b/html-test/ref/BundledPatterns2.html index 56a44f57a7..fff9d57294 100644 --- a/html-test/ref/BundledPatterns2.html +++ b/html-test/ref/BundledPatterns2.html @@ -154,7 +154,7 @@ > subscript starting from 0 and ending at <code ><code - ><a href="#" title="Data.List" + ><a href="#" title="Data.Foldable" >length</a ></code > - 1</code diff --git a/html-test/ref/Identifiers.html b/html-test/ref/Identifiers.html index b7ca92966e..b177266d4e 100644 --- a/html-test/ref/Identifiers.html +++ b/html-test/ref/Identifiers.html @@ -146,8 +146,8 @@ >++</a ></code >, <code - ><a href="#" title="Data.List" - >elem</a + ><a href="#" title="Data.Foldable" + >Foldable</a ></code ></li ><li @@ -168,8 +168,8 @@ >, <code >++</code >, <code - ><a href="#" title="Data.List" - >elem</a + ><a href="#" title="Data.Foldable" + >Foldable</a ></code >, <code >elem</code @@ -237,23 +237,23 @@ ><li >Unqualified: <code >1 <code - ><a href="#" title="Data.List" - >`elem`</a + ><a href="#" title="Data.Foldable" + >`Foldable`</a ></code > [-3..3]</code ></li ><li >Qualified: <code >1 <code - ><a href="#" title="Data.List" + ><a href="#" title="GHC.List" >`elem`</a ></code > [-3..3]</code ></li ><li >Namespaced: <code - ><a href="#" title="Data.List" - >`elem`</a + ><a href="#" title="Data.Foldable" + >`Foldable`</a ></code >, <code >`elem`</code diff --git a/hypsrc-test/Main.hs b/hypsrc-test/Main.hs index f761492738..e7afb61cdb 100644 --- a/hypsrc-test/Main.hs +++ b/hypsrc-test/Main.hs @@ -2,7 +2,7 @@ import Data.Char -import Data.List +import Data.List (isPrefixOf) import Data.Function (on) import System.Environment -- GitLab