double spaces to single ones

This commit is contained in:
euromark 2012-12-22 23:48:15 +01:00
parent a8bd7c6678
commit b811afbc44
133 changed files with 654 additions and 654 deletions

View file

@ -31,7 +31,7 @@ App::uses('Xml', 'Utility');
*
* **Note** The view variable you specify must be compatible with Xml::fromArray().
*
* You can also define `'_serialize'` as an array. This will create an additional
* You can also define `'_serialize'` as an array. This will create an additional
* top level element named `<response>` containing all the named view variables:
*
* {{{
@ -43,7 +43,7 @@ App::uses('Xml', 'Utility');
*
* `<response><posts>...</posts><users>...</users></response>`
*
* If you don't use the `_serialize` key, you will need a view. You can use extended
* If you don't use the `_serialize` key, you will need a view. You can use extended
* views to provide layout like functionality.
*
* @package Cake.View
@ -52,7 +52,7 @@ App::uses('Xml', 'Utility');
class XmlView extends View {
/**
* The subdirectory. XML views are always in xml.
* The subdirectory. XML views are always in xml.
*
* @var string
*/
@ -75,8 +75,8 @@ class XmlView extends View {
* Render a XML view.
*
* Uses the special '_serialize' parameter to convert a set of
* view variables into a XML response. Makes generating simple
* XML responses very easy. You can omit the '_serialize' parameter,
* view variables into a XML response. Makes generating simple
* XML responses very easy. You can omit the '_serialize' parameter,
* and use a normal view + layout as well.
*
* @param string $view The view being rendered.