Index: docs/clang-tidy/checks/performance-inefficient-string-addition.rst =================================================================== --- docs/clang-tidy/checks/performance-inefficient-string-addition.rst +++ docs/clang-tidy/checks/performance-inefficient-string-addition.rst @@ -12,7 +12,7 @@ std::string a("Foo"), b("Bar"); a = a + b; -Instead of this structure you should use `operator+=` or std::string's (std::basic_string) class member function `append`. For instance: +Instead of this structure you should use ``operator+=`` or std::string's (std::basic_string) class member function ``append``. For instance: .. code:: c++