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