Fix markup
[pstop.git] / lib / check_table_access.go
index 3e4e8c3..6cd3b83 100644 (file)
@@ -5,7 +5,7 @@ import (
        "log"
 )
 
-// check that select to a table exists.  Return an error if we get a failure.
+// Check that select to a table works.  Return an error if we get a failure.
 func CheckTableAccess(dbh *sql.DB, table_name string) error {
        sql_select := "SELECT 1 FROM " + table_name + " LIMIT 1"