diff options
author | Sergey Biryukov <sergeybiryukov@git.wordpress.org> | 2019-11-29 17:59:47 +0000 |
---|---|---|
committer | Sergey Biryukov <sergeybiryukov@git.wordpress.org> | 2019-11-29 17:59:47 +0000 |
commit | a03bb5454673d62dae26f50cd13619e92b23c884 (patch) | |
tree | faac09874cdb44e25548961f163c0f8a06dc9028 /src/js/_enqueues/admin/comment.js | |
parent | ea5bfe134f50b91680369f50b4d12d233b1f917c (diff) | |
download | wordpress-a03bb5454673d62dae26f50cd13619e92b23c884.tar.gz wordpress-a03bb5454673d62dae26f50cd13619e92b23c884.zip |
Docs: Replace `@returns` tags in JS docs with `@return`.
Per the documentation standards, `@returns` is an unsupported synonym, `@return` should be used instead:
https://make.wordpress.org/core/handbook/best-practices/inline-documentation-standards/javascript/
See #48303.
git-svn-id: https://develop.svn.wordpress.org/trunk@46800 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'src/js/_enqueues/admin/comment.js')
-rw-r--r-- | src/js/_enqueues/admin/comment.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/js/_enqueues/admin/comment.js b/src/js/_enqueues/admin/comment.js index 04d6e539f2..f1fd2213a0 100644 --- a/src/js/_enqueues/admin/comment.js +++ b/src/js/_enqueues/admin/comment.js @@ -27,7 +27,7 @@ jQuery(document).ready( function($) { * @listens $edittimestamp:click * * @param {Event} event The event object. - * @returns {void} + * @return {void} */ $edittimestamp.click( function( event ) { if ( $timestampdiv.is( ':hidden' ) ) { @@ -46,7 +46,7 @@ jQuery(document).ready( function($) { * @listens .cancel-timestamp:click * * @param {Event} event The event object. - * @returns {void} + * @return {void} */ $timestampdiv.find('.cancel-timestamp').click( function( event ) { @@ -68,7 +68,7 @@ jQuery(document).ready( function($) { * @listens .save-timestamp:click * * @param {Event} event The event object. - * @returns {void} + * @return {void} */ $timestampdiv.find('.save-timestamp').click( function( event ) { // crazyhorse - multiple ok cancels var aa = $('#aa').val(), mm = $('#mm').val(), jj = $('#jj').val(), hh = $('#hh').val(), mn = $('#mn').val(), |