Fix typos in documentation

Change-Id: Ie8b09b8339f219064b4f1d969246a6f84342a4fc
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
This commit is contained in:
Lorenz Haas
2013-04-04 20:15:01 +02:00
committed by Nikolai Kosjar
parent 82e347095c
commit 90ba1c2f23

View File

@@ -252,7 +252,7 @@ public:
if (Type name = foo()) {...}
With
Type name = foo;
Type name = foo();
if (name) {...}
Activates on: the name of the introduced variable
@@ -286,7 +286,8 @@ public:
with
if (something)
if (something_else)
if (something_else) {
}
}
and
@@ -350,8 +351,9 @@ public:
if (a)
b;
becomes
if (a)
if (a) {
b;
}
Activates on: the if
*/