Skip to content

Commit 9028b62

Browse files
authored
R.33 add missing space in the title (isocpp#2014)
1 parent ee8d9ab commit 9028b62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CppCoreGuidelines.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9972,7 +9972,7 @@ Using `unique_ptr` in this way both documents and enforces the function call's o
99729972
* (Simple) Warn if a function takes a `Unique_pointer<T>` 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.
99739973
* (Simple) ((Foundation)) Warn if a function takes a `Unique_pointer<T>` parameter by reference to `const`. Suggest taking a `const T*` or `const T&` instead.
99749974

9975-
### <a name="Rr-reseat"></a>R.33: Take a `unique_ptr<widget>&` parameter to express that a function reseats the`widget`
9975+
### <a name="Rr-reseat"></a>R.33: Take a `unique_ptr<widget>&` parameter to express that a function reseats the `widget`
99769976

99779977
##### Reason
99789978

0 commit comments

Comments
 (0)