From 64099b3e50958ff4d47d4fe461888dbeb6709f8f Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Mon, 20 Dec 2021 16:48:31 +0000 Subject: [PATCH] doc: Fix typo in coding style doc --- doc/contributing/source/coding-style.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: