summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortnagel@chromium.org <tnagel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-10 15:02:15 +0000
committertnagel@chromium.org <tnagel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-10 15:02:15 +0000
commite18e2d52ce5f31cc4ca11af03c1bbe7e97123fe6 (patch)
tree63834cf18fcf39d5f5392eb5ae1f957075cac883
parentfb8a77af6d8e95e2f598e409fdf70fcfabc2d12c (diff)
downloadchromium_src-e18e2d52ce5f31cc4ca11af03c1bbe7e97123fe6.zip
chromium_src-e18e2d52ce5f31cc4ca11af03c1bbe7e97123fe6.tar.gz
chromium_src-e18e2d52ce5f31cc4ca11af03c1bbe7e97123fe6.tar.bz2
Grammar fix in scoped_ptr.h comment
BUG=none Review URL: https://codereview.chromium.org/158473002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250099 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--base/memory/scoped_ptr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/memory/scoped_ptr.h b/base/memory/scoped_ptr.h
index 790fecc..9609243 100644
--- a/base/memory/scoped_ptr.h
+++ b/base/memory/scoped_ptr.h
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Scopers help you manage ownership of a pointer, helping you easily manage the
-// a pointer within a scope, and automatically destroying the pointer at the
-// end of a scope. There are two main classes you will use, which correspond
-// to the operators new/delete and new[]/delete[].
+// Scopers help you manage ownership of a pointer, helping you easily manage a
+// pointer within a scope, and automatically destroying the pointer at the end
+// of a scope. There are two main classes you will use, which correspond to the
+// operators new/delete and new[]/delete[].
//
// Example usage (scoped_ptr<T>):
// {