From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=AXB_XMAILER_MIMEOLE_OL_024C2, BAYES_00,MAILING_LIST_MULTI,REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,7ae84c67e252c8f8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-25 05:00:07 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.ems.psu.edu!news.cis.ohio-state.edu!news.maxwell.syr.edu!fr.usenet-edu.net!usenet-edu.net!enst.fr!not-for-mail From: "David C. Hoos, Sr." Newsgroups: comp.lang.ada Subject: Re: Naming conventions Date: Thu, 25 Jul 2002 06:50:13 -0500 Organization: ENST, France Sender: comp.lang.ada-admin@ada.eu.org Message-ID: References: <3D3F58F4.9050305@hotmail.com> Reply-To: comp.lang.ada@ada.eu.org NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: avanie.enst.fr 1027598405 30537 137.194.161.2 (25 Jul 2002 12:00:05 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: Thu, 25 Jul 2002 12:00:05 +0000 (UTC) Return-Path: X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: comp.lang.ada mail<->news gateway List-Unsubscribe: , Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org Xref: archiver1.google.com comp.lang.ada:27395 Date: 2002-07-25T06:50:13-05:00 ----- Original Message ----- From: "Ryan Tarpine" Newsgroups: comp.lang.ada To: Sent: Wednesday, July 24, 2002 8:48 PM Subject: Naming conventions Personally I like to use plural nouns for packages, and singular nouns for types. So, you might have package name Regular_Expressions, and type name Regular_Expression. However it is not illegal to use the same name for a type as the name of the package in which it's declared. For example the GNAT regular expression package is named GNAT.Regexp, and the type name is Regexp.