mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 12:55:22 +00:00
Fix typos in jsdoc
This commit is contained in:
@@ -212,7 +212,7 @@ var Module = Class.extend({
|
|||||||
/* setData(data)
|
/* setData(data)
|
||||||
* Set the module data.
|
* Set the module data.
|
||||||
*
|
*
|
||||||
* argument data obejct - Module data.
|
* argument data object - Module data.
|
||||||
*/
|
*/
|
||||||
setData: function (data) {
|
setData: function (data) {
|
||||||
this.data = data;
|
this.data = data;
|
||||||
@@ -226,7 +226,7 @@ var Module = Class.extend({
|
|||||||
/* setConfig(config)
|
/* setConfig(config)
|
||||||
* Set the module config and combine it with the module defaults.
|
* Set the module config and combine it with the module defaults.
|
||||||
*
|
*
|
||||||
* argument config obejct - Module config.
|
* argument config object - Module config.
|
||||||
*/
|
*/
|
||||||
setConfig: function (config) {
|
setConfig: function (config) {
|
||||||
this.config = Object.assign({}, this.defaults, config);
|
this.config = Object.assign({}, this.defaults, config);
|
||||||
|
@@ -273,7 +273,7 @@ var CalendarFetcher = function(url, reloadInterval, excludedEvents, maximumEntri
|
|||||||
/* isFullDayEvent(event)
|
/* isFullDayEvent(event)
|
||||||
* Checks if an event is a fullday 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.
|
* return bool - The event is a fullday event.
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user