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=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,fd4fc3d2b22df500 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit X-Received: by 10.68.217.69 with SMTP id ow5mr9178777pbc.0.1357509822551; Sun, 06 Jan 2013 14:03:42 -0800 (PST) Received: by 10.49.87.1 with SMTP id t1mr9600532qez.41.1357509822495; Sun, 06 Jan 2013 14:03:42 -0800 (PST) Path: s9ni85391pbb.0!nntp.google.com!f6no9584318pbd.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sun, 6 Jan 2013 14:03:42 -0800 (PST) In-Reply-To: <84766e99-7ca5-47f6-ac86-8ac3f61e8d1e@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=216.255.163.53; posting-account=rdRzuwoAAAAyW3CSBhs_xgfCUJSc1aNt NNTP-Posting-Host: 216.255.163.53 References: <84766e99-7ca5-47f6-ac86-8ac3f61e8d1e@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: On Style: Any opinions on *not* capitalising the first letter of verbs in a procedure name ? From: Britt Injection-Date: Sun, 06 Jan 2013 22:03:42 +0000 Content-Type: text/plain; charset=ISO-8859-1 Date: 2013-01-06T14:03:42-08:00 List-Id: On Sunday, January 6, 2013 12:26:12 AM UTC-5, Rod Kay wrote: > Title-case seems an improvement to me. Combined with the 'lower-verb' style, the example would become ... > > procedure put_AI_Header_and_Subject (Fyle : in Ada.Text_IO.File_Type; > > ... which looks more natural, to my eye at least. After thinking about why your proposal looks bad to me I realized that I always regard the name of a subprogram as a singular proper noun (rather than a sentence in itself) because it is used in the source code as a proper name. E.g. procedure Run_Very_Quickly (Direction : in Direction_Type) is ... and, at the point of use: Run_Very_Quickly (Direction => North_By_Northwest); it is the _name_ of the procedure and should be capitalized as a name (proper noun).