moving code comment in text helper
diff --git a/system/helpers/text_helper.php b/system/helpers/text_helper.php
index b7ade7a..b85e2aa 100644
--- a/system/helpers/text_helper.php
+++ b/system/helpers/text_helper.php
@@ -497,19 +497,19 @@
  
 // ------------------------------------------------------------------------
 
+/**
+ * Ellipsize String
+ *
+ * This function will strip tags from a string, split it at its max_length and ellipsize
+ *
+ * @param 	string		string to ellipsize
+ * @param	integer		max length of string
+ * @param	mixed		int (1|0) or float, .5, .2, etc for position to split
+ * @param 	string		ellipsis ; Default '...'
+ * @return	string		ellipsized string
+ */
 if ( ! function_exists('ellipsize'))
 {
-	/**
-	 * Ellipsize String
-	 *
-	 * This function will strip tags from a string, split it at its max_length and ellipsize
-	 *
-	 * @param 	string		string to ellipsize
-	 * @param	integer		max length of string
-	 * @param	mixed		int (1|0) or float, .5, .2, etc for position to split
-	 * @param 	string		ellipsis ; Default '...'
-	 * @return	string		ellipsized string
-	 */
 	function ellipsize($str, $max_length, $position = 1, $ellipsis = '…')
 	{
 		// Strip tags