Index: wp-includes/ms-deprecated.php
===================================================================
--- wp-includes/ms-deprecated.php	(revision 12626)
+++ wp-includes/ms-deprecated.php	(working copy)
@@ -1,9 +1,27 @@
 <?php
+/**
+ * Deprecated multisite functions from WordPress MU and past WordPress versions. You
+ * shouldn't use these functions and look for the alternatives instead. The functions
+ * will be removed in a later version.
+ *
+ * @package WordPress
+ * @subpackage Deprecated
+ */
 
+/*
+ * Deprecated functions come here to die.
+ */
+ 
+/**
+ * @since unknown
+ * @deprecated 3.0
+ * @deprecated Use wp_generate_password()
+ * @see wp_generate_password()
+ */
 function generate_random_password( $len = 8 ) {
-	_deprecated_function( __FUNCTION__, '3.0', 'wp_generarte_password()' );
-	$random_password = substr(md5(uniqid(microtime())), 0, intval( $len ) );
-	$random_password = apply_filters('random_password', $random_password);
+	_deprecated_function( __FUNCTION__, '3.0', 'wp_generate_password()' );
+	$random_password = substr( md5( uniqid( microtime() ) ), 0, intval( $len ) );
+	$random_password = apply_filters( 'random_password', $random_password );
 	return $random_password;
 }
 
