From 9cb6c35a6f261967e5881c0af7db0418f96dacde Mon Sep 17 00:00:00 2001 From: Dobiasd Date: Fri, 11 Apr 2014 10:01:56 +0200 Subject: [PATCH] typo --- from_goto_to_std-transform.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/from_goto_to_std-transform.md b/from_goto_to_std-transform.md index 6cd55b5..28acb12 100644 --- a/from_goto_to_std-transform.md +++ b/from_goto_to_std-transform.md @@ -155,7 +155,7 @@ std::transform - elapsed time: 0.470662s ## Conclusion -Sure, readability has also something to with taste or to be precise familiarity, for in my opinion you should avoid explicit loops and make use of the cool stuff in the [`` header](http://en.cppreference.com/w/cpp/algorithm) for better maintainability of your C++ software. Once you get used to it you will enjoy every for loop you do *not* have to read. ;-) +Sure, readability also has something to with taste or to be precise familiarity, for in my opinion you should avoid explicit loops and make use of the cool stuff in the [`` header](http://en.cppreference.com/w/cpp/algorithm) for better maintainability of your C++ software. Once you get used to it you will enjoy every for loop you do *not* have to read. ;-) ## Further readings