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`.