From c3313fdd1c0be9eb02724a0b6dc6cc14028bd409 Mon Sep 17 00:00:00 2001 From: Sergio Ahumada Date: Tue, 25 Oct 2011 00:11:03 +0200 Subject: Doc: Fixing typo Fix typos I was able to find in `tests/auto' directory. Change-Id: Id0bfcc18301381ac8b1ca8d5af17bd926e5913d4 Reviewed-by: Frederik Gladhorn --- tests/auto/corelib/tools/qsize/tst_qsize.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto/corelib/tools/qsize') diff --git a/tests/auto/corelib/tools/qsize/tst_qsize.cpp b/tests/auto/corelib/tools/qsize/tst_qsize.cpp index 36654df618..ae9426c568 100644 --- a/tests/auto/corelib/tools/qsize/tst_qsize.cpp +++ b/tests/auto/corelib/tools/qsize/tst_qsize.cpp @@ -195,7 +195,7 @@ void tst_QSize::expandedTo_data() QTest::newRow("data0") << QSize(10,12) << QSize(6,4) << QSize(10,12); QTest::newRow("data1") << QSize(0,0) << QSize(6,4) << QSize(6,4); // This should pick the highest of w,h components independently of each other, - // thus the result dont have to be equal to neither input1 nor input2. + // thus the results don't have to be equal to neither input1 nor input2. QTest::newRow("data3") << QSize(6,4) << QSize(4,6) << QSize(6,6); } @@ -217,7 +217,7 @@ void tst_QSize::boundedTo_data() QTest::newRow("data0") << QSize(10,12) << QSize(6,4) << QSize(6,4); QTest::newRow("data1") << QSize(0,0) << QSize(6,4) << QSize(0,0); // This should pick the lowest of w,h components independently of each other, - // thus the result dont have to be equal to neither input1 nor input2. + // thus the results don't have to be equal to neither input1 nor input2. QTest::newRow("data3") << QSize(6,4) << QSize(4,6) << QSize(4,4); } -- cgit v1.2.3