From fcd04906748421e931810223640e5f9d498a3396 Mon Sep 17 00:00:00 2001
From: Aleksey Gurtovoy
Date: Sun, 27 Oct 2002 07:43:50 +0000
Subject: [PATCH] Add 'acronyms as ordinary words' guideline
[SVN r15991]
---
more/lib_guide.htm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/more/lib_guide.htm b/more/lib_guide.htm
index 22d85dc6d6..62ca469eb3 100644
--- a/more/lib_guide.htm
+++ b/more/lib_guide.htm
@@ -173,8 +173,9 @@ library, but a reasonable effort to comply is expected.
- Use the lowercase/underscore naming conventions of
the C++ standard library. Template parameter names begin with an
- uppercase letter. Macro (gasp!) names should be all uppercase and begin with
- BOOST_.
+ uppercase letter. Macro (gasp!) names should be all uppercase and begin with
+ BOOST_. Acronyms should be treated as ordinary words
+ (e.g. xml_parser
instead of XML_parser
).
- Choose meaningful names - explicit is better than implicit, and readability counts.