summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-01-21 18:00:59 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-01-22 14:19:40 +0100
commit3956fab1dde88ba8ebd13aeed8dff80b272b52bb (patch)
tree8de6148238e1149cfa332b7aaa5713899a28f913 /doc
parente29a49ca246c0ad20fd44d028509a5de838b981b (diff)
downloadqt-creator-3956fab1dde88ba8ebd13aeed8dff80b272b52bb.tar.gz
Coding style: Fix broken characters
Somebody inserted a fancy version of '"':-) Change-Id: Ic96d5e821f4c5ad58cec80c6a5225ae24454239a Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/coding-style.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/coding-style.qdoc b/doc/api/coding-style.qdoc
index d067b92ff8..73cbaf1dfb 100644
--- a/doc/api/coding-style.qdoc
+++ b/doc/api/coding-style.qdoc
@@ -879,7 +879,7 @@
\code
auto something = new MyCustomType;
auto keyEvent = static_cast<QKeyEvent *>(event);
- auto myList = QStringList() << QLatin1String(“FooThing”) << QLatin1String(“BarThing”);
+ auto myList = QStringList() << QLatin1String("FooThing") << QLatin1String("BarThing");
\endcode
\li When assigning iterator types.