diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-21 22:42:18 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-21 22:42:18 +0000 |
commit | 15a01d43cc1df846f8411d3a54a9aa4e9450396c (patch) | |
tree | ec328b26579fdba0abeaa5556f47dc782ee46486 | |
parent | 0c527910bf63690aca2cdb4f77353566ca12f7e9 (diff) | |
download | ppe42-gcc-15a01d43cc1df846f8411d3a54a9aa4e9450396c.tar.gz ppe42-gcc-15a01d43cc1df846f8411d3a54a9aa4e9450396c.zip |
2007-11-21 Jonathan Wakely <jwakely.gcc@gmail.com>
* docs/html/17_intro/C++STYLE: Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130336 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/docs/html/17_intro/C++STYLE | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 91914689186..dbb620cda10 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2007-11-21 Jonathan Wakely <jwakely.gcc@gmail.com> + + * docs/html/17_intro/C++STYLE: Fix typos. + 2007-11-20 Benjamin Kosnik <bkoz@redhat.com> * docs/html/documentation.html: Validate. Add links to index, diff --git a/libstdc++-v3/docs/html/17_intro/C++STYLE b/libstdc++-v3/docs/html/17_intro/C++STYLE index 45fad2743de..9eca719a32b 100644 --- a/libstdc++-v3/docs/html/17_intro/C++STYLE +++ b/libstdc++-v3/docs/html/17_intro/C++STYLE @@ -11,7 +11,7 @@ http://www.gnu.org/prep/standards/standards.html#Formatting The rest of this is also interesting reading, but skip the "Design Advice" part. -The GCC coding conventions are here, are are also useful: +The GCC coding conventions are here, and are also useful: http://gcc.gnu.org/codingconventions.html In addition, because it doesn't seem to be stated explicitly anywhere @@ -289,7 +289,7 @@ namespace std virtual ~gribble() throw (); - // Start with a capitol letter, end with a period. + // Start with a capital letter, end with a period. inline void public_member(const char* __arg) const; |