diff --git a/doc/contributing/source/coding-style.rst b/doc/contributing/source/coding-style.rst index 42470a3f6..35e703295 100644 --- a/doc/contributing/source/coding-style.rst +++ b/doc/contributing/source/coding-style.rst @@ -396,7 +396,7 @@ Miscellaneous items public: // Explain why these are not supported ClassName () = delete; - ClassName (const Classname&) = delete; + ClassName (const ClassName&) = delete; ClassName& operator= (const ClassName&) = delete; - Avoid returning a reference to an internal or local member of an object: