From d5dbb84af0c17b4860b90edd98485e0a0c9289e7 Mon Sep 17 00:00:00 2001 From: Alex Hirsch Date: Fri, 11 Dec 2020 11:18:46 +0100 Subject: [PATCH] Exercises: componentwise -> component-wise --- exercises/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/README.md b/exercises/README.md index cd3793f..9f5ba79 100644 --- a/exercises/README.md +++ b/exercises/README.md @@ -254,7 +254,7 @@ It could look like this: ## Task 17 -Take your vector from Task 14 and implement componentwise addition via `operator+` on your vector. +Take your vector from Task 14 and implement component-wise addition via `operator+` on your vector. Support implicit type conversions: `MyVector{} + MyVector{}` yields a `MyVector`. **Hint:** Look into `decltype` and `std::declval`.