summaryrefslogtreecommitdiffstats
path: root/base/win
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-15 19:49:27 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-15 19:49:27 +0000
commit578cf2dea0727da32b7684b64b6c20f0112b9ae7 (patch)
tree38165b2f2ec4b629bf3b10f54f2b3ef451e5dcfb /base/win
parent098097260e8a0837073eb28535ab687a77eaaee2 (diff)
downloadchromium_src-578cf2dea0727da32b7684b64b6c20f0112b9ae7.zip
chromium_src-578cf2dea0727da32b7684b64b6c20f0112b9ae7.tar.gz
chromium_src-578cf2dea0727da32b7684b64b6c20f0112b9ae7.tar.bz2
Fix trivial comment misspelling
BUG=none TEST=none TBR=cpu Review URL: https://codereview.chromium.org/14264014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194212 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/win')
-rw-r--r--base/win/scoped_comptr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/win/scoped_comptr.h b/base/win/scoped_comptr.h
index 9d5301f..98cea0f 100644
--- a/base/win/scoped_comptr.h
+++ b/base/win/scoped_comptr.h
@@ -139,7 +139,7 @@ class ScopedComPtr : public scoped_refptr<Interface> {
// Provides direct access to the interface.
// Here we use a well known trick to make sure we block access to
- // IUknown methods so that something bad like this doesn't happen:
+ // IUnknown methods so that something bad like this doesn't happen:
// ScopedComPtr<IUnknown> p(Foo());
// p->Release();
// ... later the destructor runs, which will Release() again.