summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/helpers
diff options
context:
space:
mode:
authorSerge Noskov <sergey@noskov.biz>2014-02-18 22:17:41 +0100
committerSerge Noskov <sergey@noskov.biz>2014-02-18 22:17:41 +0100
commit19b353f0399f75c64aee4c4826abb64b7e1f937d (patch)
treea81543718c3cc6431ca8b3223ae4db38b619d664 /user_guide_src/source/helpers
parenta4f113eef935d8543cb194f8239807112a3b3aaa (diff)
Correct typo
Diffstat (limited to 'user_guide_src/source/helpers')
-rw-r--r--user_guide_src/source/helpers/directory_helper.rst42
1 files changed, 21 insertions, 21 deletions
diff --git a/user_guide_src/source/helpers/directory_helper.rst b/user_guide_src/source/helpers/directory_helper.rst
index 3004316a8..030e0ef53 100644
--- a/user_guide_src/source/helpers/directory_helper.rst
+++ b/user_guide_src/source/helpers/directory_helper.rst
@@ -15,7 +15,7 @@ directories.
Loading this Helper
===================
-This helper is loaded using the following code
+This helper is loaded using the following code:
::
@@ -29,7 +29,7 @@ The following functions are available:
.. function:: directory_map($source_dir[, $directory_depth = 0[, $hidden = FALSE]])
- :param string $source_dir: Path to the ource directory
+ :param string $source_dir: Path to the source directory
:param int $directory_depth: Depth of directories to traverse (0 = fully recursive, 1 = current dir, etc)
:param bool $hidden: Whether to include hidden directories
:returns: An array of files
@@ -56,28 +56,28 @@ The following functions are available:
Each folder name will be an array index, while its contained files will
be numerically indexed. Here is an example of a typical array::
- Array (    
- [libraries] => Array    
- (        
- [0] => benchmark.html        
- [1] => config.html        
+ Array (
+ [libraries] => Array
+ (
+ [0] => benchmark.html
+ [1] => config.html
["database/"] => Array
- (              
- [0] => query_builder.html              
- [1] => binds.html              
+ (
+ [0] => query_builder.html
+ [1] => binds.html
[2] => configuration.html
- [3] => connecting.html              
- [4] => examples.html              
- [5] => fields.html              
+ [3] => connecting.html
+ [4] => examples.html
+ [5] => fields.html
[6] => index.html
[7] => queries.html
- )        
- [2] => email.html        
- [3] => file_uploading.html        
- [4] => image_lib.html        
- [5] => input.html        
- [6] => language.html        
- [7] => loader.html        
- [8] => pagination.html        
+ )
+ [2] => email.html
+ [3] => file_uploading.html
+ [4] => image_lib.html
+ [5] => input.html
+ [6] => language.html
+ [7] => loader.html
+ [8] => pagination.html
[9] => uri.html
) \ No newline at end of file