Use the same phrasing in index and actual rule

This commit is contained in:
JuliusBrueggemann 2021-02-24 08:46:33 +01:00 committed by Jonathan Wakely
parent c57e95d1c8
commit 1caef9a7f1

View File

@ -2346,7 +2346,7 @@ Function definition rules:
* [F.3: Keep functions short and simple](#Rf-single)
* [F.4: If a function might have to be evaluated at compile time, declare it `constexpr`](#Rf-constexpr)
* [F.5: If a function is very small and time-critical, declare it inline](#Rf-inline)
* [F.6: If your function might not throw, declare it `noexcept`](#Rf-noexcept)
* [F.6: If your function must not throw, declare it `noexcept`](#Rf-noexcept)
* [F.7: For general use, take `T*` or `T&` arguments rather than smart pointers](#Rf-smart)
* [F.8: Prefer pure functions](#Rf-pure)
* [F.9: Unused parameters should be unnamed](#Rf-unused)