Index: default-filters.php
===================================================================
--- default-filters.php	(revision 6492)
+++ default-filters.php	(working copy)
@@ -1,4 +1,16 @@
 <?php
+/**
+ * Sets up the default filters and actions for most
+ * of the WordPress hooks.
+ *
+ * If you need to remove a default hook, this file will
+ * give you the priority for which to use to remove the
+ * hook.
+ *
+ * Not all of the default hooks are found in default-filters.php
+ *
+ * @package WordPress
+ */
 
 // Strip, trim, kses, special chars for string saves
 $filters = array('pre_term_name', 'pre_comment_author_name', 'pre_link_name', 'pre_link_target',
Index: feed-atom-comments.php
===================================================================
--- feed-atom-comments.php	(revision 6492)
+++ feed-atom-comments.php	(working copy)
@@ -1,4 +1,10 @@
 <?php
+/**
+ * Atom Feed Template for displaying Atom Comments feed.
+ *
+ * @package WordPress
+ */
+
 header('Content-Type: application/atom+xml; charset=' . get_option('blog_charset'), true);
 echo '<?xml version="1.0" encoding="' . get_option('blog_charset') . '" ?' . '>';
 ?>
Index: feed-atom.php
===================================================================
--- feed-atom.php	(revision 6492)
+++ feed-atom.php	(working copy)
@@ -1,4 +1,10 @@
 <?php
+/**
+ * Atom Feed Template for displaying Atom Posts feed.
+ *
+ * @package WordPress
+ */
+
 header('Content-Type: application/atom+xml; charset=' . get_option('blog_charset'), true);
 $more = 1;
 
Index: feed-rdf.php
===================================================================
--- feed-rdf.php	(revision 6492)
+++ feed-rdf.php	(working copy)
@@ -1,4 +1,10 @@
 <?php
+/**
+ * RSS 1 RDF Feed Template for displaying RSS 1 Posts feed.
+ *
+ * @package WordPress
+ */
+
 header('Content-Type: application/rdf+xml; charset=' . get_option('blog_charset'), true);
 $more = 1;
 
Index: feed-rss.php
===================================================================
--- feed-rss.php	(revision 6492)
+++ feed-rss.php	(working copy)
@@ -1,4 +1,10 @@
 <?php
+/**
+ * RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed.
+ *
+ * @package WordPress
+ */
+
 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
 $more = 1;
 
Index: feed-rss2-comments.php
===================================================================
--- feed-rss2-comments.php	(revision 6492)
+++ feed-rss2-comments.php	(working copy)
@@ -1,4 +1,10 @@
 <?php
+/**
+ * RSS2 Feed Template for displaying RSS2 Comments feed.
+ *
+ * @package WordPress
+ */
+
 header('Content-Type: text/xml;charset=' . get_option('blog_charset'), true);
 
 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>';
Index: feed-rss2.php
===================================================================
--- feed-rss2.php	(revision 6492)
+++ feed-rss2.php	(working copy)
@@ -1,4 +1,10 @@
 <?php
+/**
+ * RSS2 Feed Template for displaying RSS2 Posts feed.
+ *
+ * @package WordPress
+ */
+
 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
 $more = 1;
 
