From 00a8f0b6439b5fd6011d8bb415852135d98ecc57 Mon Sep 17 00:00:00 2001 From: Mitch Curtis Date: Mon, 30 Sep 2013 09:02:45 +0200 Subject: [PATCH] Fix grammar in QScopedPointer. have => has Change-Id: Ib77110b8ffd2f970e15c2159480e56be9ef964ca Reviewed-by: Jerome Pasion --- src/corelib/tools/qscopedpointer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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