diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-05 04:24:58 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-05 04:24:58 +0000 |
commit | 600cdb7c04b46bb90ca37e297236897e9ba935d0 (patch) | |
tree | d15ef144897e9891143a805937efd2b6450426f0 /base/threading | |
parent | 49b2510c6f0f39c3b399fb94d8e4a725440627dd (diff) | |
download | chromium_src-600cdb7c04b46bb90ca37e297236897e9ba935d0.zip chromium_src-600cdb7c04b46bb90ca37e297236897e9ba935d0.tar.gz chromium_src-600cdb7c04b46bb90ca37e297236897e9ba935d0.tar.bz2 |
more spell checking
BUG=none
NOTRY=true
Review URL: https://codereview.chromium.org/57463003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232902 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/threading')
-rw-r--r-- | base/threading/non_thread_safe.h | 2 | ||||
-rw-r--r-- | base/threading/thread_checker.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/base/threading/non_thread_safe.h b/base/threading/non_thread_safe.h index cf7a418..a27bb0e 100644 --- a/base/threading/non_thread_safe.h +++ b/base/threading/non_thread_safe.h @@ -56,7 +56,7 @@ class NonThreadSafeDoNothing { // } // // Note that base::ThreadChecker offers identical functionality to -// NonThreadSafe, but does not require inheritence. In general, it is preferable +// NonThreadSafe, but does not require inheritance. In general, it is preferable // to have a base::ThreadChecker as a member, rather than inherit from // NonThreadSafe. For more details about when to choose one over the other, see // the documentation for base::ThreadChecker. diff --git a/base/threading/thread_checker.h b/base/threading/thread_checker.h index 5a8ef22..a2ab3fe 100644 --- a/base/threading/thread_checker.h +++ b/base/threading/thread_checker.h @@ -46,7 +46,7 @@ class ThreadCheckerDoNothing { // // While inheriting from base::NonThreadSafe may give a clear indication about // the thread-safety of a class, it may also lead to violations of the style -// guide with regard to multiple inheritence. The choice between having a +// guide with regard to multiple inheritance. The choice between having a // ThreadChecker member and inheriting from base::NonThreadSafe should be based // on whether: // - Derived classes need to know the thread they belong to, as opposed to |