Codingstyle: fix typo

Reported-by: Jan Iversen <jani@apache.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2018-07-03 14:26:23 -07:00
parent d6b043cd37
commit facfdbfc82

View file

@ -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
```