From a0399abb1bbd4b76e84a7e42d9d2ed9b4155c6fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ste=CC=81phane=20PY?= Date: Mon, 5 Mar 2012 11:16:42 +0100 Subject: [PATCH 1/2] camelCase too for argument,parameters --- contributing/code/standards.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/contributing/code/standards.rst b/contributing/code/standards.rst index dc97c61e22f..df6460f6f24 100644 --- a/contributing/code/standards.rst +++ b/contributing/code/standards.rst @@ -111,11 +111,9 @@ Structure Naming Conventions ------------------ -* Use camelCase, not underscores, for variable, function and method +* Use camelCase, not underscores, for variable, option, argument, parameter names, function and method names; -* Use underscores for option, argument, parameter names; - * Use namespaces for all classes; * Suffix interfaces with `Interface`; From 7e0f8582a93e07861599db314931b3c846e821e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ste=CC=81phane=20PY?= Date: Mon, 5 Mar 2012 11:19:38 +0100 Subject: [PATCH 2/2] options should keep underscore --- contributing/code/standards.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contributing/code/standards.rst b/contributing/code/standards.rst index df6460f6f24..6d21c198e15 100644 --- a/contributing/code/standards.rst +++ b/contributing/code/standards.rst @@ -111,9 +111,11 @@ Structure Naming Conventions ------------------ -* Use camelCase, not underscores, for variable, option, argument, parameter names, function and method +* Use camelCase, not underscores, for variable, argument, parameter names, function and method names; +* Use underscores for option; + * Use namespaces for all classes; * Suffix interfaces with `Interface`;