diff options
Diffstat (limited to 'src/js/_enqueues/wp/util.js')
-rw-r--r-- | src/js/_enqueues/wp/util.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/js/_enqueues/wp/util.js b/src/js/_enqueues/wp/util.js index 939cadbf11..b5ba1801d7 100644 --- a/src/js/_enqueues/wp/util.js +++ b/src/js/_enqueues/wp/util.js @@ -56,9 +56,9 @@ window.wp = window.wp || {}; * * Sends a POST request to WordPress. * - * @param {(string|object)} action The slug of the action to fire in WordPress or options passed + * @param {(string|Object)} action The slug of the action to fire in WordPress or options passed * to jQuery.ajax. - * @param {object=} data Optional. The data to populate $_POST with. + * @param {Object=} data Optional. The data to populate $_POST with. * @return {$.promise} A jQuery promise that represents the request, * decorated with an abort() method. */ @@ -73,9 +73,9 @@ window.wp = window.wp || {}; * * Sends a POST request to WordPress. * - * @param {(string|object)} action The slug of the action to fire in WordPress or options passed + * @param {(string|Object)} action The slug of the action to fire in WordPress or options passed * to jQuery.ajax. - * @param {object=} options Optional. The options passed to jQuery.ajax. + * @param {Object=} options Optional. The options passed to jQuery.ajax. * @return {$.promise} A jQuery promise that represents the request, * decorated with an abort() method. */ |