chore: fix some typos in comments (#4679)

Signed-off-by: CoolCu <coolcui@qq.com>
pull/3748/head^2
CoolCu 2 weeks ago committed by GitHub
parent 05606c69e7
commit b25ac55a2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1573,7 +1573,7 @@ class Monitor extends BeanModel {
}
/**
* Unlinks all children of the the group monitor
* Unlinks all children of the group monitor
* @param {number} groupID ID of group to remove children of
* @returns {Promise<void>}
*/

@ -513,7 +513,7 @@ class UptimeCalculator {
/**
* Flat status to UP or DOWN
* @param {number} status the status which schould be turned into a flat status
* @param {number} status the status which should be turned into a flat status
* @returns {UP|DOWN|PENDING} The flat status
* @throws {Error} Invalid status
*/
@ -594,7 +594,7 @@ class UptimeCalculator {
totalPing += data.avgPing * data.up;
}
// Set key to the pervious time period
// Set key to the previous time period
switch (type) {
case "day":
key -= 86400;
@ -721,7 +721,7 @@ class UptimeCalculator {
result.push(data);
}
// Set key to the pervious time period
// Set key to the previous time period
switch (type) {
case "day":
key -= 86400;

@ -323,7 +323,7 @@ export default {
},
/**
* Show success or error toast dependant on response status code
* Show success or error toast dependent on response status code
* @param {object} res Response object
* @returns {void}
*/

@ -550,7 +550,7 @@ export default {
/**
* Return the correct title for the ping stat
* @param {boolean} average Is the statistic an average?
* @returns {string} Title formatted dependant on monitor type
* @returns {string} Title formatted dependent on monitor type
*/
pingTitle(average = false) {
let translationPrefix = "";

Loading…
Cancel
Save