summaryrefslogtreecommitdiffstats
path: root/base/debug_on_start.h
diff options
context:
space:
mode:
authorericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-18 16:00:38 +0000
committerericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-18 16:00:38 +0000
commitd324ab33283100c0800809b394cbde3dd1dcd801 (patch)
treeda83b2b01f7346790f1cf426cf7f252fa6d30089 /base/debug_on_start.h
parent7cb98a23d0be29c2b5ceafa6f9e4b1d8e98cd282 (diff)
downloadchromium_src-d324ab33283100c0800809b394cbde3dd1dcd801.zip
chromium_src-d324ab33283100c0800809b394cbde3dd1dcd801.tar.gz
chromium_src-d324ab33283100c0800809b394cbde3dd1dcd801.tar.bz2
Cleanup some comment typos.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@984 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug_on_start.h')
-rw-r--r--base/debug_on_start.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/debug_on_start.h b/base/debug_on_start.h
index 63fc5dc..0d249df 100644
--- a/base/debug_on_start.h
+++ b/base/debug_on_start.h
@@ -67,7 +67,7 @@ class DebugOnStart {
#ifdef _WIN64
// "Fix" the segment. On x64, the .CRT segment is merged into the .rdata segment
-// so it constains const data only.
+// so it contains const data only.
#pragma const_seg(push, ".CRT$XIB")
// Declare the pointer so the CRT will find it.
extern const DebugOnStart::PIFV debug_on_start;
@@ -79,7 +79,7 @@ DECLSPEC_SELECTANY const DebugOnStart::PIFV debug_on_start =
#else // _WIN64
// "Fix" the segment. On x86, the .CRT segment is merged into the .data segment
-// so it constains non-const data only.
+// so it contains non-const data only.
#pragma data_seg(push, ".CRT$XIB")
// Declare the pointer so the CRT will find it.
DECLSPEC_SELECTANY DebugOnStart::PIFV debug_on_start = &DebugOnStart::Init;