X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/4feeb71a9d812a9ae371c28a3d8b442a4394ded7..607b7e02d77e7326161e8ec15639052d2040f745:/wp-includes/session.php diff --git a/wp-includes/session.php b/wp-includes/session.php index 409fe30a..63ab8fe5 100644 --- a/wp-includes/session.php +++ b/wp-includes/session.php @@ -40,7 +40,7 @@ abstract class WP_Session_Tokens { */ final public static function get_instance( $user_id ) { /** - * Filter the session token manager used. + * Filters the session token manager used. * * @since 4.0.0 * @@ -108,7 +108,7 @@ abstract class WP_Session_Tokens { * * This function generates a token and stores it with the associated * expiration time (and potentially other session information via the - * `attach_session_information` filter). + * {@see 'attach_session_information'} filter). * * @since 4.0.0 * @access public @@ -118,7 +118,7 @@ abstract class WP_Session_Tokens { */ final public function create( $expiration ) { /** - * Filter the information attached to the newly created session. + * Filters the information attached to the newly created session. * * Could be used in the future to attach information such as * IP address or user agent to a session.