Ability to pass array of language files to Language Library similar to Loader Library
diff --git a/user_guide_src/source/libraries/language.rst b/user_guide_src/source/libraries/language.rst
index 3014d8f..6e7ef00 100644
--- a/user_guide_src/source/libraries/language.rst
+++ b/user_guide_src/source/libraries/language.rst
@@ -66,6 +66,11 @@
 english). If the second parameter is missing, the default language set
 in your **application/config/config.php** file will be used.
 
+You can also load multiple language files at the same time by passing an array of language files as first parameter.
+::
+
+	$this->lang->load(array('filename1', 'filename2'));
+
 .. note:: The *language* parameter can only consist of letters.
 
 Fetching a Line of Text
@@ -110,7 +115,7 @@
 
 	.. method:: load($langfile[, $idiom = ''[, $return = FALSE[, $add_suffix = TRUE[, $alt_path = '']]]])
 
-		:param	string	$langfile: Language file to load
+		:param	mixed	$langfile: Language file to load as an string or an array with multiple files
 		:param	string	$idiom: Language name (i.e. 'english')
 		:param	bool	$return: Whether to return the loaded array of translations
 		:param	bool	$add_suffix: Whether to add the '_lang' suffix to the language file name