From cc28e43e9acb7da068ca0d6654fb4782ce0eec3c Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 9 Jul 2012 15:51:55 +1200 Subject: [PATCH] Correct typo: "recommandations" -> "recommendations" --- _includes/code-style-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/code-style-guide.md b/_includes/code-style-guide.md index a59c052..4f2ebb4 100644 --- a/_includes/code-style-guide.md +++ b/_includes/code-style-guide.md @@ -2,7 +2,7 @@ The PHP community is large and diverse, composed of innumerable libraries, frameworks, and components. It is common for PHP developers to choose several of these and combine them into a single project. It is important that PHP code adhere (as close as possible) to a common code style to make it easy for developers to mix and match various libraries for their projects. -The [Framework Interop Group][fig] (formerly known as the 'PHP Standards Group') has proposed and approved a series of style recommandations, known as [PSR-0][psr0], [PSR-1][psr1] and [PSR-2][psr2]. Don't let the funny names confuse you, these recommendations are merely a set of rules that some projects like Drupal, Zend, CakePHP, phpBB, AWS SDK, FuelPHP, Lithium, etc are starting to adopt. You can use them for your own projects, or continue to use your own personal style. +The [Framework Interop Group][fig] (formerly known as the 'PHP Standards Group') has proposed and approved a series of style recommendations, known as [PSR-0][psr0], [PSR-1][psr1] and [PSR-2][psr2]. Don't let the funny names confuse you, these recommendations are merely a set of rules that some projects like Drupal, Zend, CakePHP, phpBB, AWS SDK, FuelPHP, Lithium, etc are starting to adopt. You can use them for your own projects, or continue to use your own personal style. Ideally you should write PHP code that adheres to one or more of these standards so that other developers can easily read and work with your code. They all add on to the recommendation before, so using PSR-1 requires PSR-0, but does not require PSR-2.