From 0604cc9d00356c762c1d55e2f0c749a22a55de93 Mon Sep 17 00:00:00 2001 From: Alex Hirsch Date: Fri, 13 Nov 2020 17:13:13 +0100 Subject: [PATCH] Exercises: Fix subtask indentation --- exercises/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/README.md b/exercises/README.md index 4f86e29..5143d71 100644 --- a/exercises/README.md +++ b/exercises/README.md @@ -200,8 +200,8 @@ For the functional programming nerds, the definition of this function would be s Write your function in different ways and compare the readability: - use a range-based for loop - use `std::transform` -- use a lambda expression -- use `std::mem_fn` + - use a lambda expression + - use `std::mem_fn` Think about taking the argument by value instead of taking it by const reference.