diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 4974db3..344544c 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9972,7 +9972,7 @@ Using `unique_ptr` in this way both documents and enforces the function call's o * (Simple) Warn if a function takes a `Unique_pointer` parameter by lvalue reference and does not either assign to it or call `reset()` on it on at least one code path. Suggest taking a `T*` or `T&` instead. * (Simple) ((Foundation)) Warn if a function takes a `Unique_pointer` parameter by reference to `const`. Suggest taking a `const T*` or `const T&` instead. -### R.33: Take a `unique_ptr&` parameter to express that a function reseats the`widget` +### R.33: Take a `unique_ptr&` parameter to express that a function reseats the `widget` ##### Reason