diff --git a/system/libraries/Table.php b/system/libraries/Table.php
index 935a7d8..4771295 100644
--- a/system/libraries/Table.php
+++ b/system/libraries/Table.php
@@ -61,7 +61,7 @@
 	// --------------------------------------------------------------------
 
 	/**
-	 * Add a table heading
+	 * Set the table heading
 	 *
 	 * Can be passed as an array or discreet params
 	 *
@@ -69,7 +69,7 @@
 	 * @param	mixed
 	 * @return	void
 	 */
-	function add_heading()
+	function set_heading()
 	{
 		$args = func_get_args();
 		$this->heading = (is_array($args[0])) ? $args[0] : $args;
@@ -313,12 +313,7 @@
 						'table_close' 			=> '</table>'
 					);	
 	}
-
-
-
- 	
- 	
- 	
+	
 
 }