diff --git a/push-syndication.php b/push-syndication.php
index f2f542db14fbc65380be738ccfb91a5ae84b50df..fc67de444f6808e8c4a9daf7b54569af70b84cda 100644
--- a/push-syndication.php
+++ b/push-syndication.php
@@ -1,16 +1,13 @@
-<?php /*
-
-**************************************************************************
-
-Plugin Name:  Push Syndication
-Plugin URI:   http://wordpress.org/extend/plugins/push-syndication/
-Description:  Push content to multiple sites
-Version:      2.0
-Author:       Automattic
-Author URI:   http://automattic.com/wordpress-plugins/
-License:      GPLv2 or later
-
-**************************************************************************/
+<?php
+/**
+ * Plugin Name:  Syndication
+ * Plugin URI:   http://wordpress.org/extend/plugins/push-syndication/
+ * Description:  Syndicate content to and from your sites
+ * Version:      2.0
+ * Author:       Automattic
+ * Author URI:   http://automattic.com
+ * License:      GPLv2 or later
+ */
 
 if ( ! defined( 'PUSH_SYNDICATE_KEY' ) )
 	define( 'PUSH_SYNDICATE_KEY', 'PUSH_SYNDICATE_KEY' );
@@ -23,4 +20,4 @@ if ( !defined( 'PUSH_SYNDICATION_ENVIRONMENT' ) )
     define( 'PUSH_SYNDICATION_ENVIRONMENT', 'WP' );
 
 $push_syndication_server_class = PUSH_SYNDICATION_ENVIRONMENT . '_Push_Syndication_Server';
-$push_syndication_server = new $push_syndication_server_class();
\ No newline at end of file
+$push_syndication_server = new $push_syndication_server_class();