From de684dcb63c7d3069213ac28c9339b53b136a325 Mon Sep 17 00:00:00 2001 From: Veeck Date: Fri, 8 Mar 2019 11:19:15 +0100 Subject: [PATCH] Fix typos in jsdoc --- js/module.js | 4 ++-- modules/default/calendar/calendarfetcher.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/module.js b/js/module.js index 907a7f61..3e39dd5c 100644 --- a/js/module.js +++ b/js/module.js @@ -212,7 +212,7 @@ var Module = Class.extend({ /* setData(data) * Set the module data. * - * argument data obejct - Module data. + * argument data object - Module data. */ setData: function (data) { this.data = data; @@ -226,7 +226,7 @@ var Module = Class.extend({ /* setConfig(config) * Set the module config and combine it with the module defaults. * - * argument config obejct - Module config. + * argument config object - Module config. */ setConfig: function (config) { this.config = Object.assign({}, this.defaults, config); diff --git a/modules/default/calendar/calendarfetcher.js b/modules/default/calendar/calendarfetcher.js index a1e4aa8d..0076a605 100644 --- a/modules/default/calendar/calendarfetcher.js +++ b/modules/default/calendar/calendarfetcher.js @@ -273,7 +273,7 @@ var CalendarFetcher = function(url, reloadInterval, excludedEvents, maximumEntri /* isFullDayEvent(event) * Checks if an event is a fullday event. * - * argument event obejct - The event object to check. + * argument event object - The event object to check. * * return bool - The event is a fullday event. */