diff --git a/server/model/group.js b/server/model/group.js index f24fe99d..599b758b 100644 --- a/server/model/group.js +++ b/server/model/group.js @@ -4,7 +4,7 @@ const { R } = require("redbean-node"); class Group extends BeanModel { /** - * Return a object that ready to parse to JSON for public + * Return an object that ready to parse to JSON for public * Only show necessary data to public * @param {boolean} [showTags=false] Should the JSON include monitor tags * @returns {Object} diff --git a/server/model/heartbeat.js b/server/model/heartbeat.js index 38ba6f46..a0b40d08 100644 --- a/server/model/heartbeat.js +++ b/server/model/heartbeat.js @@ -14,7 +14,7 @@ const { BeanModel } = require("redbean-node/dist/bean-model"); class Heartbeat extends BeanModel { /** - * Return a object that ready to parse to JSON for public + * Return an object that ready to parse to JSON for public * Only show necessary data to public * @returns {Object} */ @@ -28,7 +28,7 @@ class Heartbeat extends BeanModel { } /** - * Return a object that ready to parse to JSON + * Return an object that ready to parse to JSON * @returns {Object} */ toJSON() { diff --git a/server/model/incident.js b/server/model/incident.js index e28478f7..f954cc74 100644 --- a/server/model/incident.js +++ b/server/model/incident.js @@ -3,7 +3,7 @@ const { BeanModel } = require("redbean-node/dist/bean-model"); class Incident extends BeanModel { /** - * Return a object that ready to parse to JSON for public + * Return an object that ready to parse to JSON for public * Only show necessary data to public * @returns {Object} */ diff --git a/server/model/monitor.js b/server/model/monitor.js index 60c984f3..e1a2b80b 100644 --- a/server/model/monitor.js +++ b/server/model/monitor.js @@ -41,7 +41,7 @@ class Monitor extends BeanModel { } /** - * Return a object that ready to parse to JSON + * Return an object that ready to parse to JSON * @returns {Object} */ async toJSON(includeSensitiveData = true) { diff --git a/server/model/proxy.js b/server/model/proxy.js index 34a55d2f..4517b11b 100644 --- a/server/model/proxy.js +++ b/server/model/proxy.js @@ -2,7 +2,7 @@ const { BeanModel } = require("redbean-node/dist/bean-model"); class Proxy extends BeanModel { /** - * Return a object that ready to parse to JSON + * Return an object that ready to parse to JSON * @returns {Object} */ toJSON() { diff --git a/server/model/status_page.js b/server/model/status_page.js index a48dc7b2..99b284ab 100644 --- a/server/model/status_page.js +++ b/server/model/status_page.js @@ -98,7 +98,7 @@ class StatusPage extends BeanModel { } /** - * Return a object that ready to parse to JSON + * Return an object that ready to parse to JSON * @returns {Object} */ async toJSON() { @@ -119,7 +119,7 @@ class StatusPage extends BeanModel { } /** - * Return a object that ready to parse to JSON for public + * Return an object that ready to parse to JSON for public * Only show necessary data to public * @returns {Object} */ diff --git a/server/model/tag.js b/server/model/tag.js index 5a8d97d3..b31eb868 100644 --- a/server/model/tag.js +++ b/server/model/tag.js @@ -3,7 +3,7 @@ const { BeanModel } = require("redbean-node/dist/bean-model"); class Tag extends BeanModel { /** - * Return a object that ready to parse to JSON + * Return an object that ready to parse to JSON * @returns {Object} */ toJSON() {