aboutsummaryrefslogtreecommitdiffstats
path: root/docs/checks
diff options
context:
space:
mode:
authorSergio Martins <smartins@kde.org>2018-11-09 11:38:30 +0000
committerSergio Martins <smartins@kde.org>2018-11-09 11:38:30 +0000
commita3aa8f7ef18f3c9bddaffbeb894420e467fdf9d5 (patch)
tree783111532218204a69cb9b2fe70863a98962674c /docs/checks
parentcc2466f218b472a5e0b98154f78172d44eee1afb (diff)
parent38d8f1e0995aa61399f614a0315f8f75c4c5d4c6 (diff)
Merge branch '1.4'
Diffstat (limited to 'docs/checks')
-rw-r--r--docs/checks/README-qstring-allocations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/checks/README-qstring-allocations.md b/docs/checks/README-qstring-allocations.md
index fda4278e..22645b43 100644
--- a/docs/checks/README-qstring-allocations.md
+++ b/docs/checks/README-qstring-allocations.md
@@ -18,7 +18,7 @@ Here's a summary of usages that allocate:
6. `s == "foo" // Allocates, use QLatin1String`
-7. `s == QLatin1String("foo) // No allocation`
+7. `s == QLatin1String("foo") // No allocation`
8. `s == QStringLiteral("foo") // No allocation`