diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 12:34:53 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 12:34:53 +0000 |
commit | de1f44a0d55309165a21afede7b84fbd01df258b (patch) | |
tree | 16117336764e6f910a18eb3fdbab2767a69823be /base/lazy_instance.h | |
parent | 7b1223dfc101bf4772f7fc3295074bf86cbb5998 (diff) | |
download | chromium_src-de1f44a0d55309165a21afede7b84fbd01df258b.zip chromium_src-de1f44a0d55309165a21afede7b84fbd01df258b.tar.gz chromium_src-de1f44a0d55309165a21afede7b84fbd01df258b.tar.bz2 |
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
Diffstat (limited to 'base/lazy_instance.h')
-rw-r--r-- | base/lazy_instance.h | 2 |
1 files changed, 1 insertions, 1 deletions
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() // |