From 011a9f6073fcc0252a6c67012563fa7abce6be70 Mon Sep 17 00:00:00 2001 From: Guy Halford-Thompson Date: Sun, 23 Jan 2011 23:04:31 +0000 Subject: [PATCH] [ZF-10989] Note: Note appearing in coding standards docs - Fixed duplicate 'Note' appearing in coding standards documentation --- documentation/manual/en/ref/coding_standard.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/manual/en/ref/coding_standard.xml b/documentation/manual/en/ref/coding_standard.xml index 6281d4ff34a..6cbc0800045 100644 --- a/documentation/manual/en/ref/coding_standard.xml +++ b/documentation/manual/en/ref/coding_standard.xml @@ -19,7 +19,7 @@ - Note: Sometimes developers consider the establishment of a standard more + Sometimes developers consider the establishment of a standard more important than what that standard actually suggests at the most detailed level of design. The guidelines in Zend Framework's coding standards capture practices that have worked well on the Zend Framework project. You may modify @@ -800,7 +800,7 @@ class Foo - Note: Pass-by-reference is the only parameter passing + Pass-by-reference is the only parameter passing mechanism permitted in a method declaration. @@ -1027,7 +1027,7 @@ switch ($numPeople) { - Note: It is sometimes useful to write a + It is sometimes useful to write a case statement which falls through to the next case by not including a break or return within that case. To distinguish these cases from bugs, any