From 4a9daff746713dfbb3d7c953e3ce09dcd21064b4 Mon Sep 17 00:00:00 2001 From: PHO Date: Fri, 13 Jan 2012 08:11:43 +0900 Subject: [PATCH] doc comments Ditz-issue: c80e79a2585ac20cc5ed677d70b6983a2842a81d --- Data/URI/Internal/Scheme.hs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Data/URI/Internal/Scheme.hs b/Data/URI/Internal/Scheme.hs index 8bb5a7d..7b8fd52 100644 --- a/Data/URI/Internal/Scheme.hs +++ b/Data/URI/Internal/Scheme.hs @@ -28,7 +28,8 @@ import Prelude.Unicode -- |'Scheme' names consist of a non-empty sequence of characters -- beginning with a letter and followed by any combination of letters, --- digits, plus (\'+\'), period (\'.\'), or hyphen (\'-\'): +-- digits, plus (\'+\'), period (\'.\'), or hyphen (\'-\'). Comparison +-- of 'Scheme's are always case-insensitive. See: -- newtype Scheme = Scheme CIAscii deriving ( Eq @@ -39,7 +40,7 @@ newtype Scheme = Scheme CIAscii , Typeable ) --- |'isString' is a fast but unsafe way to create 'Scheme' such that +-- |'fromString' is a fast but unsafe way to create 'Scheme' such that -- no validation on the string is performed. deriving instance IsString Scheme -- 2.40.0