diff --git a/wp-includes/js/wp-api.js b/wp-includes/js/wp-api.js index 0bb5d2e205..17d72af68e 100644 --- a/wp-includes/js/wp-api.js +++ b/wp-includes/js/wp-api.js @@ -179,7 +179,7 @@ // Add any non empty args, merging them into the args object. if ( ! _.isEmpty( routeEndpoint.args ) ) { - // Set as defauls if no args yet. + // Set as default if no args yet. if ( _.isEmpty( modelInstance.prototype.args ) ) { modelInstance.prototype.args = routeEndpoint.args; } else { @@ -196,7 +196,7 @@ // Add any non empty args, merging them into the defaults object. if ( ! _.isEmpty( routeEndpoint.args ) ) { - // Set as defauls if no defaults yet. + // Set as default if no defaults yet. if ( _.isEmpty( modelInstance.prototype.options ) ) { modelInstance.prototype.options = routeEndpoint.args; } else { diff --git a/wp-includes/version.php b/wp-includes/version.php index 970f06bfb1..9f5825abb9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38877'; +$wp_version = '4.7-alpha-38878'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.