Index: class-wp-editor.php
===================================================================
--- class-wp-editor.php	(revision 41376)
+++ class-wp-editor.php	(working copy)
@@ -788,6 +788,7 @@
 	}
 
 	/**
+     * @static
 	 * Enqueue all editor scripts.
 	 * For use when the editor is going to be initialized after page load.
 	 *
@@ -812,6 +813,7 @@
 	}
 
 	/**
+     * @static
 	 * Print (output) all editor scripts and default settings.
 	 * For use when the editor is going to be initialized after page load.
 	 *
@@ -907,6 +909,12 @@
 		self::wp_link_dialog();
 	}
 
+
+    /**
+     * @static
+     * Returns the Mce locale settings.
+     * @return string
+     */
 	public static function get_mce_locale() {
 		if ( empty( self::$mce_locale ) ) {
 			$mce_locale = get_user_locale();
@@ -916,6 +924,11 @@
 		return self::$mce_locale;
 	}
 
+	/**
+     * @static
+	 * Returns base url for tiny mce.
+	 * @return string|void
+	 */
 	public static function get_baseurl() {
 		if ( empty( self::$baseurl ) ) {
 			self::$baseurl = includes_url( 'js/tinymce' );
@@ -925,6 +938,7 @@
 	}
 
 	/**
+     * @static
 	 * Returns the default TinyMCE settings.
 	 * Doesn't include plugins, buttons, editor selector.
 	 *
