diff options
author | Cash Costello <cash.costello@gmail.com> | 2013-04-20 09:15:59 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2013-04-20 09:15:59 -0400 |
commit | 39886afeec37309963be57551699c7bfc3f6c37b (patch) | |
tree | 6438eb5409ed2141e5243f13db1126ad236ed213 | |
parent | 970d9bc397edaf03b8c8228e78065f51d8736eb0 (diff) | |
download | elgg-39886afeec37309963be57551699c7bfc3f6c37b.tar.gz elgg-39886afeec37309963be57551699c7bfc3f6c37b.tar.bz2 |
Fixes #5004 fixed some documentation in database lib
-rw-r--r-- | engine/lib/database.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/database.php b/engine/lib/database.php index 3553d787d..37dfb8f8d 100644 --- a/engine/lib/database.php +++ b/engine/lib/database.php @@ -473,7 +473,7 @@ function insert_data($query) { } /** - * Update a row in the database. + * Update the database. * * @note Altering the DB invalidates all queries in {@link $DB_QUERY_CACHE}. * @@ -498,7 +498,7 @@ function update_data($query) { } /** - * Remove a row from the database. + * Remove data from the database. * * @note Altering the DB invalidates all queries in {@link $DB_QUERY_CACHE}. * |