summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@digia.com>2013-09-30 09:02:45 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-30 11:37:52 +0200
commit00a8f0b6439b5fd6011d8bb415852135d98ecc57 (patch)
tree9314bcdf420ae39f963abbc993661ff972342558 /src/corelib/tools
parentb32e0da8ebfe3dabb3b18b6d9e4588ec525ed3f2 (diff)
Fix grammar in QScopedPointer.
have => has Change-Id: Ib77110b8ffd2f970e15c2159480e56be9ef964ca Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qscopedpointer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qscopedpointer.cpp b/src/corelib/tools/qscopedpointer.cpp
index fb0025c1ff..e0c369ecad 100644
--- a/src/corelib/tools/qscopedpointer.cpp
+++ b/src/corelib/tools/qscopedpointer.cpp
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
QScopedPointer guarantees that the object pointed to will get deleted when
the current scope disappears.
- Consider this function which does heap allocations, and have various exit points:
+ Consider this function which does heap allocations, and has various exit points:
\snippet code/src_corelib_tools_qscopedpointer.cpp 0