Index: base/singleton.h |
diff --git a/base/singleton.h b/base/singleton.h |
index afc2f0d397069bc59c31a7be050ebc5add7bd696..3272fce471caa43fb45726ca010863e0b2c027d5 100644 |
--- a/base/singleton.h |
+++ b/base/singleton.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2009 The Chromium Authors. All rights reserved. |
wtc
2009/09/02 01:17:17
This should say 2006-2009.
|
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -70,7 +70,7 @@ struct LeakySingletonTraits : public DefaultSingletonTraits<Type> { |
// |
// On every platform, if Traits::RAE is true, the singleton will be destroyed at |
// process exit. More precisely it uses base::AtExitManager which requires an |
-// object of this type to be instanciated. AtExitManager mimics the semantics |
+// object of this type to be instantiated. AtExitManager mimics the semantics |
// of atexit() such as LIFO order but under Windows is safer to call. For more |
// information see at_exit.h. |
// |