# This patch file was generated by NetBeans IDE
# Following Index: paths are relative to: /Users/luke/Sites/trunk.dev
# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
Index: wp-activate.php
--- wp-activate.php Base (BASE)
+++ wp-activate.php Locally Modified (Based On LOCAL)
@@ -1,4 +1,12 @@
 <?php
+/**
+ * Confirms that the activation key that is sent in an email after a user signs
+ * up for a new blog matchs the key for that user and then displays confirmation.
+ * 
+ * @package WordPress
+ */
+
+/** Define ABSPATH as this file's directory */
 define( 'WP_INSTALLING', true );
 
 /** Sets up the WordPress Environment. */
@@ -16,11 +24,17 @@
 
 do_action( 'activate_header' );
 
+/**
+ * Adds an action hook specific to this page that fires on wp_head 
+ */
 function do_activate_header() {
 	do_action( 'activate_wp_head' );
 }
 add_action( 'wp_head', 'do_activate_header' );
 
+/**
+ * Loads styles specific to this page.
+ */
\ No newline at end of file
 function wpmu_activate_stylesheet() {
 	?>
 	<style type="text/css">
