From 6e95233d0cee3b57fffa862bb5dee651c1bc29c8 Mon Sep 17 00:00:00 2001 From: "mdomba (mdlap)" Date: Thu, 3 May 2012 11:15:46 +0200 Subject: [PATCH] typo fix and restructure of one line --- docs/code_style.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/code_style.md b/docs/code_style.md index d3b1bfb..eda58b0 100644 --- a/docs/code_style.md +++ b/docs/code_style.md @@ -107,8 +107,8 @@ $config = array( - Classes should be named using `CamelCase`. - The brace should always be written on the line underneath the class name. - Every class must have a documentation block that conforms to the PHPDoc. -- All code in a class must be indented with a signle tab. -- Only one class is permitted per PHP file. +- All code in a class must be indented with a single tab. +- There should be only one class in a single PHP file. - All classes should be namespaced. - Class name should match file name. Class namespace should match directory structure.