From 4facb82f8751424f58aafdf008228366f980c4de Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 3 Jul 2001 09:02:05 +0000 Subject: [PATCH] [project @ 2001-07-03 09:02:05 by simonmar] add paragraph about capitalisation of module names --- doc/libraries.sgml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/doc/libraries.sgml b/doc/libraries.sgml index 75e2b8e..e1155e0 100644 --- a/doc/libraries.sgml +++ b/doc/libraries.sgml @@ -677,7 +677,7 @@ -- Stability : experimental | provisional | stable -- Portability : portable | non-portable (reason(s)) -- --- $Id: libraries.sgml,v 1.1 2001/06/28 14:15:04 simonmar Exp $ +-- $Id: libraries.sgml,v 1.2 2001/07/03 09:02:05 simonmar Exp $ -- -- Description ----------------------------------------------------------------------------- @@ -687,7 +687,7 @@ - $Id: libraries.sgml,v 1.1 2001/06/28 14:15:04 simonmar Exp $ + $Id: libraries.sgml,v 1.2 2001/07/03 09:02:05 simonmar Exp $ is optional, but usually included if the module is under CVS or RCS control. @@ -781,7 +781,7 @@ of the hierarchy has the same name as the root of that subtree, eg. Foreign re-exports Foreign.Ptr, - Foreign.MarshalUtils etc. + Foreign.Marshal.Utils etc. @@ -813,6 +813,15 @@ import Text.Html.Internals -- The non-abstract library (for building other libs) + + Acronyms are fully capitalised in a module name. + eg. HTML, URI, + CGI, etc. Exceptions may be made for + acronyms which have an existing well-established + alternative capitalisation, or acronyms which are also + valid words, and are more often used as such. + + -- 1.7.10.4