diff options
author | wyck@chromium.org <wyck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-19 19:35:44 +0000 |
---|---|---|
committer | wyck@chromium.org <wyck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-19 19:35:44 +0000 |
commit | 95c369c621d8b7c53a1fa40c8faabbdf29bf6ef4 (patch) | |
tree | 3f6b7fb2b08e44d6ee87476fd22da34bca6e27c9 /base | |
parent | 5bc96b735ba8bf58020c9e41672dcc5d63f562c1 (diff) | |
download | chromium_src-95c369c621d8b7c53a1fa40c8faabbdf29bf6ef4.zip chromium_src-95c369c621d8b7c53a1fa40c8faabbdf29bf6ef4.tar.gz chromium_src-95c369c621d8b7c53a1fa40c8faabbdf29bf6ef4.tar.bz2 |
Fixed spelling mistake typo in comment.
BUG=none
TEST=none
R=darin@chromium.org
Review URL: http://codereview.chromium.org/7038009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85953 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/basictypes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/basictypes.h b/base/basictypes.h index 1188d8d..c6f5097 100644 --- a/base/basictypes.h +++ b/base/basictypes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -238,7 +238,7 @@ struct CompileAssert { // expr is a compile-time constant. (Template arguments must be // determined at compile-time.) // -// - The outter parentheses in CompileAssert<(bool(expr))> are necessary +// - The outer parentheses in CompileAssert<(bool(expr))> are necessary // to work around a bug in gcc 3.4.4 and 4.0.1. If we had written // // CompileAssert<bool(expr)> |