Docs: Fix typo in wp_audio_extensions and wp_video_extensions filter descriptions.

See #42505.
Built from https://develop.svn.wordpress.org/trunk@42696


git-svn-id: http://core.svn.wordpress.org/trunk@42524 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-02-11 16:29:30 +00:00
parent e6322d0afe
commit 3de0634199
2 changed files with 3 additions and 3 deletions

View File

@ -2242,7 +2242,7 @@ function wp_get_audio_extensions() {
*
* @since 3.6.0
*
* @param array $extensions An array of support audio formats. Defaults are
* @param array $extensions An array of supported audio formats. Defaults are
* 'mp3', 'ogg', 'flac', 'm4a', 'wav'.
*/
return apply_filters( 'wp_audio_extensions', array( 'mp3', 'ogg', 'flac', 'm4a', 'wav' ) );
@ -2477,7 +2477,7 @@ function wp_get_video_extensions() {
*
* @since 3.6.0
*
* @param array $extensions An array of support video formats. Defaults are
* @param array $extensions An array of supported video formats. Defaults are
* 'mp4', 'm4v', 'webm', 'ogv', 'flv'.
*/
return apply_filters( 'wp_video_extensions', array( 'mp4', 'm4v', 'webm', 'ogv', 'flv' ) );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-42695';
$wp_version = '5.0-alpha-42696';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.