summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authoretienneb@chromium.org <etienneb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-06 11:12:21 +0000
committeretienneb@chromium.org <etienneb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-06 11:12:21 +0000
commit2d96e582b034b7a149c8fc13dd2c88fdeef34cf5 (patch)
tree95708db3599ae486eb9cdfc2e57db9ae67c33587 /base
parent9d195bd2d45cc6a5472095b3834fcb1bdd2e0f70 (diff)
downloadchromium_src-2d96e582b034b7a149c8fc13dd2c88fdeef34cf5.zip
chromium_src-2d96e582b034b7a149c8fc13dd2c88fdeef34cf5.tar.gz
chromium_src-2d96e582b034b7a149c8fc13dd2c88fdeef34cf5.tar.bz2
Fix typos in basic types header.
BUG= Review URL: https://chromiumcodereview.appspot.com/21910007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215865 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/basictypes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/basictypes.h b/base/basictypes.h
index 642d311..1bed65c 100644
--- a/base/basictypes.h
+++ b/base/basictypes.h
@@ -93,7 +93,7 @@ const int64 kint64max = (( int64) GG_LONGLONG(0x7FFFFFFFFFFFFFFF));
void operator=(const TypeName&)
// An older, deprecated, politically incorrect name for the above.
-// NOTE: The usage of this macro was baned from our code base, but some
+// NOTE: The usage of this macro was banned from our code base, but some
// third_party libraries are yet using it.
// TODO(tfarina): Figure out how to fix the usage of this macro in the
// third_party libraries and get rid of it.
@@ -185,7 +185,7 @@ char (&ArraySizeHelper(const T (&array)[N]))[N];
// When you use implicit_cast, the compiler checks that the cast is safe.
// Such explicit implicit_casts are necessary in surprisingly many
// situations where C++ demands an exact type match instead of an
-// argument type convertable to a target type.
+// argument type convertible to a target type.
//
// The From type can be inferred, so the preferred syntax for using
// implicit_cast is the same as for static_cast etc.:
@@ -288,7 +288,7 @@ struct CompileAssert {
//
// This is true for any cast syntax, either *(int*)&f or
// *reinterpret_cast<int*>(&f). And it is particularly true for
-// conversions betweeen integral lvalues and floating-point lvalues.
+// conversions between integral lvalues and floating-point lvalues.
//
// The purpose of 3.10 -15- is to allow optimizing compilers to assume
// that expressions with different types refer to different memory. gcc