diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php
index 79eeac9c08..3f9ae8e47e 100644
--- a/wp-includes/formatting.php
+++ b/wp-includes/formatting.php
@@ -11,13 +11,13 @@
* Replaces common plain text characters into formatted entities
*
* As an example,
- *
- * 'cause today's effort makes it worth tomorrow's "holiday"...
- *
+ *
+ * 'cause today's effort makes it worth tomorrow's "holiday" ...
+ *
* Becomes:
- *
- * ’cause today’s effort makes it worth tomorrow’s “holiday”…
- *
+ *
+ * ’cause today’s effort makes it worth tomorrow’s “holiday” …
+ *
* Code within certain html blocks are skipped.
*
* @since 0.71
@@ -312,7 +312,7 @@ function wptexturize($text, $reset = false) {
* @since 2.9.0
* @access private
*
- * @param string $text Text to check. Must be a tag like or [shortcode].
+ * @param string $text Text to check. Must be a tag like `` or `[shortcode]`.
* @param array $stack List of open tag elements.
* @param array $disabled_elements The tag names to match against. Spaces are not allowed in tag names.
*/
@@ -480,7 +480,7 @@ function _autop_newline_preservation_helper( $matches ) {
/**
* Don't auto-p wrap shortcodes that stand alone
*
- * Ensures that shortcodes are not wrapped in <
>...<
>. + * Ensures that shortcodes are not wrapped in `...
`. * * @since 2.9.0 * @@ -1366,7 +1366,7 @@ function sanitize_html_class( $class, $fallback = '' ) { /** * Converts a number of characters from a string. * - * Metadata tags <
- * _split_str_by_whitespace( "1234 67890 1234 67890a cd 1234 890 123456789 1234567890a 45678 1 3 5 7 90 ", 10 ) ==
- * array (
- * 0 => '1234 67890 ', // 11 characters: Perfect split
- * 1 => '1234 ', // 5 characters: '1234 67890a' was too long
- * 2 => '67890a cd ', // 10 characters: '67890a cd 1234' was too long
- * 3 => '1234 890 ', // 11 characters: Perfect split
- * 4 => '123456789 ', // 10 characters: '123456789 1234567890a' was too long
- * 5 => '1234567890a ', // 12 characters: Too long, but no inner whitespace on which to split
- * 6 => ' 45678 ', // 11 characters: Perfect split
- * 7 => '1 3 5 7 9', // 9 characters: End of $string
- * );
- *
+ * _split_str_by_whitespace( "1234 67890 1234 67890a cd 1234 890 123456789 1234567890a 45678 1 3 5 7 90 ", 10 ) ==
+ * array (
+ * 0 => '1234 67890 ', // 11 characters: Perfect split
+ * 1 => '1234 ', // 5 characters: '1234 67890a' was too long
+ * 2 => '67890a cd ', // 10 characters: '67890a cd 1234' was too long
+ * 3 => '1234 890 ', // 11 characters: Perfect split
+ * 4 => '123456789 ', // 10 characters: '123456789 1234567890a' was too long
+ * 5 => '1234567890a ', // 12 characters: Too long, but no inner whitespace on which to split
+ * 6 => ' 45678 ', // 11 characters: Perfect split
+ * 7 => '1 3 5 7 9', // 9 characters: End of $string
+ * );
*
* @since 3.4.0
* @access private
@@ -2021,7 +2019,7 @@ function wp_rel_nofollow_callback( $matches ) {
*
* Callback handler for {@link convert_smilies()}.
* Looks up one smiley code in the $wpsmiliestrans global array and returns an
- * string for that smiley.
+ * `` string for that smiley.
*
* @global array $wpsmiliestrans
* @since 2.8.0
@@ -3703,10 +3701,10 @@ function _links_add_base($m) {
/**
* Adds a Target attribute to all links in passed content.
*
- * This function by default only applies to tags, however this can be
+ * This function by default only applies to `` tags, however this can be
* modified by the 3rd param.
*
- * NOTE: Any current target attributed will be stripped and replaced.
+ * *NOTE:* Any current target attributed will be stripped and replaced.
*
* @since 2.7.0
*
@@ -3757,7 +3755,7 @@ function normalize_whitespace( $str ) {
* Properly strip all HTML tags including script and style
*
* This differs from strip_tags() because it removes the contents of
- * the ' )
+ * the `' )`
* will return 'something'. wp_strip_all_tags will return ''
*
* @since 2.9.0
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 346368d0d8..a11fa68ed2 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.1-beta2-30539';
+$wp_version = '4.1-beta2-30540';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.