Index: wp-admin/includes/plugin-install.php
===================================================================
--- wp-admin/includes/plugin-install.php	(revision 9239)
+++ wp-admin/includes/plugin-install.php	(working copy)
@@ -156,7 +156,12 @@
 	echo wp_generate_tag_cloud($tags, array( 'single_text' => __('%d plugin'), 'multiple_text' => __('%d plugins') ) );
 }
 
-function install_search_form($after_submit = '') {
+/**
+ * Display search form for searching plugins.
+ *
+ * @since 2.7.0
+ */
+function install_search_form(){
 	$type = isset($_REQUEST['type']) ? $_REQUEST['type'] : '';
 	$term = isset($_REQUEST['s']) ? $_REQUEST['s'] : '';
 
Index: wp-includes/functions.php
===================================================================
--- wp-includes/functions.php	(revision 9239)
+++ wp-includes/functions.php	(working copy)
@@ -646,12 +646,13 @@
 /**
  * Saves and restores user interface settings stored in a cookie.
  *
+ * Checks if the current user-settings cookie is updated and stores it. When no
+ * cookie exists (different browser used), adds the last saved cookie restoring
+ * the settings.
+ *
  * @package WordPress
  * @subpackage Option
  * @since 2.7.0
- *
- * Checks if the current user-settings cookie is updated and stores it.
- * When no cookie exists (different browser used), adds the last saved cookie restoring the settings.
  */
 function wp_user_settings() {
 
@@ -690,8 +691,8 @@
  *
  * @package WordPress
  * @subpackage Option
- * @since 2.7.0 
- *   
+ * @since 2.7.0
+ *
  * @param string $name The name of the setting.
  * @param string $default Optional default value to return when $name is not set.
  * @return mixed the last saved user setting or the default value/false if it doesn't exist.
@@ -706,12 +707,12 @@
 /**
  * Delete user interface settings.
  *
+ * Deleting settings would reset them to the defaults.
+ *
  * @package WordPress
  * @subpackage Option
  * @since 2.7.0
  *
- * Deleting settings would reset them to the defaults.
- *
  * @param mixed $names The name or array of names of the setting to be deleted.
  */
 function delete_user_setting( $names ) {
@@ -763,6 +764,13 @@
 	return array();
 }
 
+/**
+ * Delete the user settings of the current user.
+ *
+ * @package WordPress
+ * @subpackage Option
+ * @since 2.7.0
+ */
 function delete_all_user_settings() {
 	if ( ! $user = wp_get_current_user() )
 		return;
Index: wp-includes/functions.wp-scripts.php
===================================================================
--- wp-includes/functions.wp-scripts.php	(revision 9239)
+++ wp-includes/functions.wp-scripts.php	(working copy)
@@ -34,6 +34,12 @@
 	return $wp_scripts->do_items( $handles );
 }
 
+/**
+ * Register new JavaScript file.
+ *
+ * @since r16
+ * @see WP_Scripts::add() For parameter information.
+ */
 function wp_register_script( $handle, $src, $deps = array(), $ver = false ) {
 	global $wp_scripts;
 	if ( !is_a($wp_scripts, 'WP_Scripts') )
@@ -43,10 +49,11 @@
 }
 
 /**
- * Localizes a script
+ * Localizes a script.
  *
- * Localizes only if script has already been added
+ * Localizes only if script has already been added.
  *
+ * @since r16
  * @see WP_Script::localize()
  */
 function wp_localize_script( $handle, $object_name, $l10n ) {
@@ -57,6 +64,12 @@
 	return $wp_scripts->localize( $handle, $object_name, $l10n );
 }
 
+/**
+ * Remove a registered script.
+ *
+ * @since r16
+ * @see WP_Scripts::remove() For parameter information.
+ */
 function wp_deregister_script( $handle ) {
 	global $wp_scripts;
 	if ( !is_a($wp_scripts, 'WP_Scripts') )
@@ -66,10 +79,11 @@
 }
 
 /**
- * Equeues script
+ * Enqueues script.
  *
  * Registers the script if src provided (does NOT overwrite) and enqueues.
  *
+ * @since r16
  * @see WP_Script::add(), WP_Script::enqueue()
 */
 function wp_enqueue_script( $handle, $src = false, $deps = array(), $ver = false ) {
Index: wp-includes/functions.wp-styles.php
===================================================================
--- wp-includes/functions.wp-styles.php	(revision 9239)
+++ wp-includes/functions.wp-styles.php	(working copy)
@@ -7,12 +7,14 @@
  */
 
 /**
- * {@internal Missing Short Description}}
+ * Display styles that are in the queue or part of $handles.
  *
  * @since r79
+ * @uses do_action() Calls 'wp_print_styles' hook.
+ * @global object $wp_styles The WP_Styles object for printing styles.
  *
- * @param mixed $handles See {@link WP_Styles::do_items()} for information.
- * @return mixed See {@link WP_Styles::do_items()} for information.
+ * @param array $handles (optional) Styles to be printed.  (void) prints queue, (string) prints that style, (array of strings) prints those styles.
+ * @return bool True on success, false on failure.
  */
 function wp_print_styles( $handles = false ) {
 	do_action( 'wp_print_styles' );
@@ -30,6 +32,12 @@
 	return $wp_styles->do_items( $handles );
 }
 
+/**
+ * Register CSS style file.
+ *
+ * @since r79
+ * @see WP_Styles::add() For parameter and additional information.
+ */
 function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = false ) {
 	global $wp_styles;
 	if ( !is_a($wp_styles, 'WP_Styles') )
@@ -38,6 +46,12 @@
 	$wp_styles->add( $handle, $src, $deps, $ver, $media );
 }
 
+/**
+ * Remove a registered CSS file.
+ *
+ * @since r79
+ * @see WP_Styles::remove() For parameter and additional information.
+ */
 function wp_deregister_style( $handle ) {
 	global $wp_styles;
 	if ( !is_a($wp_styles, 'WP_Styles') )
@@ -46,6 +60,12 @@
 	$wp_styles->remove( $handle );
 }
 
+/**
+ * Enqueue a CSS style file.
+ *
+ * @since r79
+ * @see WP_Styles::add(), WP_Styles::enqueue()
+ */
 function wp_enqueue_style( $handle, $src = false, $deps = array(), $ver = false, $media = false ) {
 	global $wp_styles;
 	if ( !is_a($wp_styles, 'WP_Styles') )
Index: wp-includes/general-template.php
===================================================================
--- wp-includes/general-template.php	(revision 9239)
+++ wp-includes/general-template.php	(working copy)
@@ -93,6 +93,15 @@
 		load_template( get_theme_root() . '/default/sidebar.php');
 }
 
+/**
+ * Display search form.
+ *
+ * Will first attempt to locate the searchform.php file in either the child or
+ * the parent, then load it. If it doesn't exist, then the default search form
+ * will be displayed.
+ *
+ * @since 2.7.0
+ */
 function get_search_form() {
 	do_action( 'get_search_form' );
 
Index: wp-includes/link-template.php
===================================================================
--- wp-includes/link-template.php	(revision 9239)
+++ wp-includes/link-template.php	(working copy)
@@ -28,8 +28,8 @@
  * @since 2.2.0
  * @uses $wp_rewrite
  *
- * @param $string string a URL with or without a trailing slash
- * @param $type_of_url string the type of URL being considered (e.g. single, category, etc) for use in the filter
+ * @param $string String a URL with or without a trailing slash
+ * @param $type_of_url String the type of URL being considered (e.g. single, category, etc) for use in the filter
  * @return string
  */
 function user_trailingslashit($string, $type_of_url = '') {
@@ -439,10 +439,10 @@
  * @subpackage Feed
  * @since 2.5.0
  *
- * @param string $link_text Descriptive text
+ * @param string $link_text Descriptive text.
  * @param int $post_id Optional post ID.  Default to current post.
- * @param string $feed Optional. {@internal Missing Description}}
- * @return string Link to the comment feed for the current post
+ * @param string $feed Optional. Feed format.
+ * @return string Link to the comment feed for the current post.
 */
 function post_comments_feed_link( $link_text = '', $post_id = '', $feed = '' ) {
 	$url = get_post_comments_feed_link($post_id, $feed);
Index: wp-includes/pluggable.php
===================================================================
--- wp-includes/pluggable.php	(revision 9239)
+++ wp-includes/pluggable.php	(working copy)
@@ -426,16 +426,16 @@
 }
 endif;
 
+if ( !function_exists('wp_authenticate') ) :
 /**
  * Checks a user's login information and logs them in if it checks out.
  *
- * @since 2.5
+ * @since 2.5.0
  *
  * @param string $username User's username
  * @param string $password User's password
  * @return WP_Error|WP_User WP_User object if login successful, otherwise WP_Error object.
  */
-if ( !function_exists('wp_authenticate') ) :
 function wp_authenticate($username, $password) {
 	$username = sanitize_user($username);
 
@@ -467,12 +467,12 @@
 }
 endif;
 
+if ( !function_exists('wp_logout') ) :
 /**
  * Log the current user out.
  *
- * @since 2.5
+ * @since 2.5.0
  */
-if ( !function_exists('wp_logout') ) :
 function wp_logout() {
 	wp_clear_auth_cookie();
 	do_action('wp_logout');
Index: wp-includes/rss.php
===================================================================
--- wp-includes/rss.php	(revision 9239)
+++ wp-includes/rss.php	(working copy)
@@ -17,7 +17,7 @@
  */
 do_action('load_feed_engine');
 
-
+/** RSS feed constant. */
 define('RSS', 'RSS');
 define('ATOM', 'Atom');
 define('MAGPIE_USER_AGENT', 'WordPress/' . $GLOBALS['wp_version']);
Index: wp-includes/script-loader.php
===================================================================
--- wp-includes/script-loader.php	(revision 9239)
+++ wp-includes/script-loader.php	(working copy)
@@ -298,7 +298,6 @@
  *
  * @param object $styles
  */
-
 function wp_default_styles( &$styles ) {
 	// This checks to see if site_url() returns something and if it does not
 	// then it assigns $guess_url to wp_guess_url(). Strange format, but it works.
@@ -346,7 +345,6 @@
  * @param array $js_array JavaScript scripst array
  * @return array Reordered array, if needed.
  */
-
 function wp_prototype_before_jquery( $js_array ) {
 	if ( false === $jquery = array_search( 'jquery', $js_array ) )
 		return $js_array;
Index: wp-settings.php
===================================================================
--- wp-settings.php	(revision 9239)
+++ wp-settings.php	(working copy)
@@ -17,7 +17,7 @@
 
 
 /**
- * wp_unregister_GLOBALS() - Turn register globals off
+ * Turn register globals off.
  *
  * @access private
  * @since 2.1.0
@@ -142,12 +142,12 @@
 	die( /*WP_I18N_OLD_MYSQL*/'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.'/*/WP_I18N_OLD_MYSQL*/ );
 
 /**
- * timer_start() - PHP 4 standard microtime start capture
+ * PHP 4 standard microtime start capture.
  *
  * @access private
  * @since 0.71
- * @global int $timestart Seconds and Microseconds added together from when function is called
- * @return bool Always returns true
+ * @global int $timestart Seconds and Microseconds added together from when function is called.
+ * @return bool Always returns true.
  */
 function timer_start() {
 	global $timestart;
@@ -158,7 +158,7 @@
 }
 
 /**
- * timer_stop() - Return and/or display the time from the page start to when function is called.
+ * Return and/or display the time from the page start to when function is called.
  *
  * You can get the results and print them by doing:
  * <code>
@@ -315,12 +315,24 @@
 /**
  * Allows for the plugins directory to be moved from the default location.
  *
- * @since 2.6
+ * @since 2.6.0
  */
 if ( !defined('WP_PLUGIN_DIR') )
 	define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' ); // full path, no trailing slash
+
+/**
+ * Allows for the plugins directory to be moved from the default location.
+ *
+ * @since 2.6.0
+ */
 if ( !defined('WP_PLUGIN_URL') )
 	define( 'WP_PLUGIN_URL', WP_CONTENT_URL . '/plugins' ); // full url, no trailing slash
+
+/**
+ * Allows for the plugins directory to be moved from the default location.
+ *
+ * @since 2.1.0
+ */
 if ( !defined('PLUGINDIR') )
 	define( 'PLUGINDIR', 'wp-content/plugins' ); // Relative to ABSPATH.  For back compat.
 
@@ -336,7 +348,7 @@
 
 /**
  * Should be exactly the same as the default value of SECRET_KEY in wp-config-sample.php
- * @since 2.5
+ * @since 2.5.0
  */
 $wp_default_secret_key = 'put your unique phrase here';
 
@@ -356,21 +368,21 @@
 
 /**
  * It is possible to define this in wp-config.php
- * @since 2.5
+ * @since 2.5.0
  */
 if ( !defined('AUTH_COOKIE') )
 	define('AUTH_COOKIE', 'wordpress_' . COOKIEHASH);
 
 /**
  * It is possible to define this in wp-config.php
- * @since 2.6
+ * @since 2.6.0
  */
 if ( !defined('SECURE_AUTH_COOKIE') )
 	define('SECURE_AUTH_COOKIE', 'wordpress_sec_' . COOKIEHASH);
 
 /**
  * It is possible to define this in wp-config.php
- * @since 2.6
+ * @since 2.6.0
  */
 if ( !defined('LOGGED_IN_COOKIE') )
 	define('LOGGED_IN_COOKIE', 'wordpress_logged_in_' . COOKIEHASH);
@@ -398,14 +410,14 @@
 
 /**
  * It is possible to define this in wp-config.php
- * @since 2.6
+ * @since 2.6.0
  */
 if ( !defined('ADMIN_COOKIE_PATH') )
 	define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . 'wp-admin' );
 
 /**
  * It is possible to define this in wp-config.php
- * @since 2.6
+ * @since 2.6.0
  */
 if ( !defined('PLUGINS_COOKIE_PATH') )
 	define( 'PLUGINS_COOKIE_PATH', preg_replace('|https?://[^/]+|i', '', WP_PLUGIN_URL)  );
@@ -419,7 +431,7 @@
 
 /**
  * It is possible to define this in wp-config.php
- * @since 2.6
+ * @since 2.6.0
  */
 if ( !defined('FORCE_SSL_ADMIN') )
 	define('FORCE_SSL_ADMIN', false);
@@ -427,7 +439,7 @@
 
 /**
  * It is possible to define this in wp-config.php
- * @since 2.6
+ * @since 2.6.0
  */
 if ( !defined('FORCE_SSL_LOGIN') )
 	define('FORCE_SSL_LOGIN', false);
@@ -529,13 +541,13 @@
 
 /**
  * Web Path to the current active template directory
- * @since 1.5
+ * @since 1.5.0
  */
 define('TEMPLATEPATH', get_template_directory());
 
 /**
  * Web Path to the current active template stylesheet directory
- * @since 2.1
+ * @since 2.1.0
  */
 define('STYLESHEETPATH', get_stylesheet_directory());
 
@@ -568,10 +580,10 @@
 	include(TEMPLATEPATH . '/functions.php');
 
 /**
- * shutdown_action_hook() - Runs just before PHP shuts down execution.
+ * Runs just before PHP shuts down execution.
  *
  * @access private
- * @since 1.2
+ * @since 1.2.0
  */
 function shutdown_action_hook() {
 	do_action('shutdown');
