diff --git a/system/database/drivers/postgre/postgre_utility.php b/system/database/drivers/postgre/postgre_utility.php
index 0ee448f..7b51c3f 100644
--- a/system/database/drivers/postgre/postgre_utility.php
+++ b/system/database/drivers/postgre/postgre_utility.php
@@ -97,7 +97,7 @@
 	/**
 	 * Optimize table query
 	 *
-	 * Generates a platform-specific query so that a table can be optimized
+	 * Is table optimization supported in Postgre?
 	 *
 	 * @access	private
 	 * @param	string	the table name
@@ -105,7 +105,7 @@
 	 */
 	function _optimize_table($table)
 	{
-		return FALSE; // Is this supported in Postgre?
+		return FALSE; 
 	}
 
 	// --------------------------------------------------------------------
@@ -113,7 +113,7 @@
 	/**
 	 * Repair table query
 	 *
-	 * Generates a platform-specific query so that a table can be repaired
+	 * Are table repairs supported in Postgre?
 	 *
 	 * @access	private
 	 * @param	string	the table name
@@ -121,7 +121,7 @@
 	 */
 	function _repair_table($table)
 	{
-		return return FALSE; // Is this supported in Postgre?
+		return return FALSE;
 	}