From ba99665e24fa74119053f6f63487616f2d4904ce Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Fri, 14 Oct 2011 15:34:26 +0300 Subject: [PATCH] Fixed the example in the coding standard section --- contributing/code/standards.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contributing/code/standards.rst b/contributing/code/standards.rst index 63bd308aad3..fa9f18bcfc8 100644 --- a/contributing/code/standards.rst +++ b/contributing/code/standards.rst @@ -49,7 +49,8 @@ example containing most features described below: { if (true === $dummy) { return; - } elseif ('string' === $dummy) { + } + if ('string' === $dummy) { $dummy = substr($dummy, 0, 5); }