diff --git a/Documentation/CodingStyle.md b/Documentation/CodingStyle.md index 96f4b2601fe8e281af956e9f1f3abb1b3cd8511f..28c2c43b9627eb789f9939a4325f7021d6f5a368 100644 --- a/Documentation/CodingStyle.md +++ b/Documentation/CodingStyle.md @@ -261,8 +261,7 @@ for (auto it = children.begin(); it != children.end(); ++it) ### Pointers and References -[](#pointers-cpp) **Pointer and reference types in C++ code** -Both pointer types and reference types should be written with no space between the type name and the `*` or `&`. +[](#pointers-cpp) Both pointer types and reference types should be written with no space between the type name and the `*` or `&`. [](#pointers-out-argument) An out argument of a function should be passed by reference except rare cases where it is optional in which case it should be passed by pointer.