diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-07-03 14:26:23 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-07-03 14:26:23 -0700 |
commit | facfdbfc82a651aff6a31ff2263ba6bfab02e39c (patch) | |
tree | 2eeed3ea8122fa6d977edfce5e4d751d54456335 | |
parent | d6b043cd37b1d99aca0f7c52ca12c3671dddecf4 (diff) | |
download | subsurface-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.md | 2 |
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 ``` |