From facfdbfc82a651aff6a31ff2263ba6bfab02e39c Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 3 Jul 2018 14:26:23 -0700 Subject: [PATCH] Codingstyle: fix typo Reported-by: Jan Iversen Signed-off-by: Dirk Hohndel --- CodingStyle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ```