fix bad indentation, causes bullet list to become code block

This commit is contained in:
Thibault Kruse 2015-09-26 15:35:54 +02:00
parent 411a5749e4
commit c2266bd8e4

View File

@ -2347,7 +2347,7 @@ rather than using the generic `tuple`.
**Enforcement**:
* Output parameters should be replaced by return values.
* Output parameters should be replaced by return values.
An output parameter is one that the function writes to, invokes a non-`const` member function, or passes on as a non-`const`.
<a name="Rf-return-ptr"></a>
@ -2556,7 +2556,7 @@ For passthrough functions that pass in parameters (by ordinary reference or by p
**Enforcement**:
* Warn on use of a named non-generic lambda (e.g., `auto x = [](int i){ /*...*/; };`) that captures nothing and appears at global scope. Write an ordinary function instead.
* Warn on use of a named non-generic lambda (e.g., `auto x = [](int i){ /*...*/; };`) that captures nothing and appears at global scope. Write an ordinary function instead.