diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-21 19:26:49 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-21 19:26:49 +0000 |
commit | 4db649404a3cdb9ea1f0c1c7aab5bd69d93eed75 (patch) | |
tree | b846d225e23cb3e3eb1dee1568de87ab17e5f567 /libstdc++-v3 | |
parent | 89904d8c50f4aa19f7f7296b1ea42a0d2034c2a2 (diff) | |
download | gcc-4db649404a3cdb9ea1f0c1c7aab5bd69d93eed75.tar.gz |
2001-03-21 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
* intclude/bits/basic_file.h: Fix typos in comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40705 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/basic_file.h | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 63312e86a59..605286e7b6d 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2001-03-21 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> + + * intclude/bits/basic_file.h: Fix typos in comments. + 2001-03-20 Richard Henderson <rth@redhat.com> * src/gen-num-limits.cc: Instantiate for wchar_t. diff --git a/libstdc++-v3/include/bits/basic_file.h b/libstdc++-v3/include/bits/basic_file.h index a4964bfc14f..ad7e19b35be 100644 --- a/libstdc++-v3/include/bits/basic_file.h +++ b/libstdc++-v3/include/bits/basic_file.h @@ -44,7 +44,7 @@ namespace std // Ulrich is going to make some detailed comment here, explaining // all this unpleasantness, providing detailed performance analysis // as to why we have to do all this lame vtable hacking instead of a - // sane, function-based approach. This verbage will provide a clear + // sane, function-based approach. This verbiage will provide a clear // and detailed description of the whole object-layout, // vtable-swapping, sordid history of this hack. template<typename _CharT> @@ -136,7 +136,7 @@ namespace std _M_open_mode(ios_base::openmode __mode, int& __p_mode, int& __rw_mode, char* __c_mode); - // Eqivalent to the normal fopen function. + // Equivalent to the normal fopen function. __basic_file* open(const char* __name, ios_base::openmode __mode, int __prot = 0664); @@ -176,26 +176,26 @@ namespace std pbackfail(int __c); // A complex "write" function that sets all of __c_file_type's - // ponters and associated data members correctly and manages it's + // pointers and associated data members correctly and manages its // relation to the external byte sequence. virtual streamsize xsputn(const _CharT* __s, streamsize __n); // A complex "read" function that sets all of __c_file_type's - // ponters and associated data members correctly and manages it's + // pointers and associated data members correctly and manages its // relation to the external byte sequence. virtual streamsize xsgetn(_CharT* __s, streamsize __n); // A complex "seekoff" function that sets all of __c_file_type's - // ponters and associated data members correctly and manages it's + // pointers and associated data members correctly and manages its // relation to the external byte sequence. virtual streamoff seekoff(streamoff __off, ios_base::seekdir __way, ios_base::openmode __mode = ios_base::in | ios_base::out); // A complex "seekpos" function that sets all of __c_file_type's - // pointers and associated data members correctly and manages it's + // pointers and associated data members correctly and manages its // relation to the external byte sequence. virtual streamoff seekpos(streamoff __pos, |