[fix] markdown backtick mismatch

This commit is contained in:
xtofl 2015-10-12 20:44:06 +02:00
parent b369145220
commit be59e3c73e

View File

@ -5506,7 +5506,7 @@ This a relatively rare use because implementation can often be organized into a
##### Reason
Capping a hierarchy with 'final` is rarely needed for logical reasons and can be damaging to the extensibility of a hierarchy.
Capping a hierarchy with `final` is rarely needed for logical reasons and can be damaging to the extensibility of a hierarchy.
Capping an individual virtual function with `final` is error-prone as that `final` can easily be overlooked when defining/overriding a set of functions.
##### Example, bad