Fix a typo in a comment.

Review URL: http://codereview.chromium.org/17630


git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7923 0039d316-1c4b-4281-b951-d872f2087c98


CrOS-Libchrome-Original-Commit: de1f44a0d55309165a21afede7b84fbd01df258b
diff --git a/base/lazy_instance.h b/base/lazy_instance.h
index 0849503..10c7b31 100644
--- a/base/lazy_instance.h
+++ b/base/lazy_instance.h
@@ -24,7 +24,7 @@
 // requires that Type be a complete type so we can determine the size.
 //
 // Example usage:
-//   static LazyInstance<MyClass> my_instance(base::LINKER_INITALIZED);
+//   static LazyInstance<MyClass> my_instance(base::LINKER_INITIALIZED);
 //   void SomeMethod() {
 //     my_instance.Get().SomeMethod();  // MyClass::SomeMethod()
 //