Change @since 2.9 to @since 2.9.0.

git-svn-id: https://develop.svn.wordpress.org/trunk@13829 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2010-03-26 19:23:39 +00:00
parent 53250b7986
commit d43df7123a
5 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -427,7 +427,7 @@ function get_comment_count( $post_id = 0 ) {
/**
* Add meta data field to a comment.
*
* @since 2.9
* @since 2.9.0
* @uses add_metadata
* @link http://codex.wordpress.org/Function_Reference/add_comment_meta
*
@@ -448,7 +448,7 @@ function add_comment_meta($comment_id, $meta_key, $meta_value, $unique = false)
* value, will keep from removing duplicate metadata with the same key. It also
* allows removing all metadata matching key, if needed.
*
* @since 2.9
* @since 2.9.0
* @uses delete_metadata
* @link http://codex.wordpress.org/Function_Reference/delete_comment_meta
*
@@ -464,7 +464,7 @@ function delete_comment_meta($comment_id, $meta_key, $meta_value = '') {
/**
* Retrieve comment meta field for a comment.
*
* @since 2.9
* @since 2.9.0
* @uses get_metadata
* @link http://codex.wordpress.org/Function_Reference/get_comment_meta
*
@@ -486,7 +486,7 @@ function get_comment_meta($comment_id, $key, $single = false) {
*
* If the meta field for the comment does not exist, it will be added.
*
* @since 2.9
* @since 2.9.0
* @uses update_metadata
* @link http://codex.wordpress.org/Function_Reference/update_comment_meta
*