aboutsummaryrefslogtreecommitdiffstats
path: root/CodingStyle.md
diff options
context:
space:
mode:
Diffstat (limited to 'CodingStyle.md')
-rw-r--r--CodingStyle.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CodingStyle.md b/CodingStyle.md
index 89c680e4f..692e4a14c 100644
--- a/CodingStyle.md
+++ b/CodingStyle.md
@@ -137,7 +137,7 @@ other editors that implement this coding style, please add them here.
Two classical examples are:
- Iterators, whose type names often are verbose:
```
- auto = m_trackers.find(when);
+ auto it = m_trackers.find(when);
```
is not only distinctly shorter than
```