From 6bf595f7f882b548074ea48a3d3d8729a607f89f Mon Sep 17 00:00:00 2001 From: Sergey Podgornyy Date: Fri, 12 Jan 2018 13:30:02 +0100 Subject: [PATCH 1/2] Update best_practices.rst --- bundles/best_practices.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/best_practices.rst b/bundles/best_practices.rst index 6fd360d64af..8de4194950d 100644 --- a/bundles/best_practices.rst +++ b/bundles/best_practices.rst @@ -26,7 +26,7 @@ A namespace becomes a bundle as soon as you add a bundle class to it. The bundle class name must follow these simple rules: * Use only alphanumeric characters and underscores; -* Use a CamelCased name; +* Use a StudlyCaps name; * Use a descriptive and short name (no more than two words); * Prefix the name with the concatenation of the vendor (and optionally the category namespaces); From 215e0b2cab20612d47da21cbd03e1cdd33d53f63 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Fri, 12 Jan 2018 15:43:23 +0100 Subject: [PATCH 2/2] Added minor clarification about what StudlyCaps is --- bundles/best_practices.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/best_practices.rst b/bundles/best_practices.rst index 8de4194950d..cc5392f7807 100644 --- a/bundles/best_practices.rst +++ b/bundles/best_practices.rst @@ -26,7 +26,7 @@ A namespace becomes a bundle as soon as you add a bundle class to it. The bundle class name must follow these simple rules: * Use only alphanumeric characters and underscores; -* Use a StudlyCaps name; +* Use a StudlyCaps name (i.e. camelCase with the first letter uppercased); * Use a descriptive and short name (no more than two words); * Prefix the name with the concatenation of the vendor (and optionally the category namespaces);