Skip to content

Commit b807cd9

Browse files
sjakobiLysxia
authored andcommitted
Haddocks: Hyperlink some identifiers and modules
1 parent d86cae2 commit b807cd9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Data/Text/Encoding.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ decodeASCII bs =
211211
-- | Decode a 'ByteString' containing Latin-1 (aka ISO-8859-1) encoded text.
212212
--
213213
-- 'decodeLatin1' is semantically equivalent to
214-
-- @Data.Text.pack . Data.ByteString.Char8.unpack@
214+
-- @'Data.Text.pack' . 'Data.ByteString.Char8.unpack'@
215215
--
216216
-- This is a total function. However, bear in mind that decoding Latin-1 (non-ASCII)
217217
-- characters to UTf-8 requires actual work and is not just buffer copying.

src/Data/Text/IO.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
-- The functions in this module obey the runtime system's locale,
1414
-- character set encoding, and line ending conversion settings.
1515
--
16-
-- If you want to do I\/O using the UTF-8 encoding, use @Data.Text.IO.Utf8@,
16+
-- If you want to do I\/O using the UTF-8 encoding, use "Data.Text.IO.Utf8",
1717
-- which is faster than this module.
1818
--
1919
-- If you know in advance that you will be working with data that has

src/Data/Text/IO/Utf8.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- Portability : GHC
55
--
66
-- Efficient UTF-8 support for text I\/O.
7-
-- Unlike @Data.Text.IO@, these functions do not depend on the locale
7+
-- Unlike "Data.Text.IO", these functions do not depend on the locale
88
-- and do not do line ending conversion.
99
module Data.Text.IO.Utf8
1010
(

0 commit comments

Comments
 (0)