aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2018-07-03 14:26:23 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-07-03 14:26:23 -0700
commitfacfdbfc82a651aff6a31ff2263ba6bfab02e39c (patch)
tree2eeed3ea8122fa6d977edfce5e4d751d54456335
parentd6b043cd37b1d99aca0f7c52ca12c3671dddecf4 (diff)
downloadsubsurface-facfdbfc82a651aff6a31ff2263ba6bfab02e39c.tar.gz
Codingstyle: fix typo
Reported-by: Jan Iversen <jani@apache.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-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
```