Fix some doc comments

This commit is contained in:
Tetrakern 2024-03-30 12:36:56 +01:00
parent ff489f8540
commit d50c959c8c
2 changed files with 3 additions and 3 deletions

View File

@ -592,7 +592,7 @@ require_once __DIR__ . '/includes/functions/_content_helpers.php';
require_once __DIR__ . '/includes/functions/_query_helpers.php'; require_once __DIR__ . '/includes/functions/_query_helpers.php';
/** /**
* Add content helper functions. * Add role functions.
*/ */
require_once __DIR__ . '/includes/functions/_roles.php'; require_once __DIR__ . '/includes/functions/_roles.php';

View File

@ -5,9 +5,9 @@
/** /**
* Benchmark AJAX request response times * Benchmark AJAX request response times
* *
* Default: benchmarkAjax(20, {'action': '...'}); * Default: fcn_benchmarkAjax(20, {'action': '...'});
* *
* Fast: benchmarkAjax(20, {'fcn_fast_ajax': 1, 'action': '...'}); * Fast: fcn_benchmarkAjax(20, {'fcn_fast_ajax': 1, 'action': '...'});
* *
* @param {number} n - The number of times the AJAX request should be made. * @param {number} n - The number of times the AJAX request should be made.
* @param {Object} data - The payload for the AJAX request. * @param {Object} data - The payload for the AJAX request.