From f236ff00865d8c16ea85716e764170406ef469e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Kr=C3=B6g?= Date: Mon, 14 Feb 2022 22:04:26 +0100 Subject: [PATCH] Lower case first letter for function parameter --- src/ol/interaction/Modify.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ol/interaction/Modify.js b/src/ol/interaction/Modify.js index 09540b786e..129db2ce90 100644 --- a/src/ol/interaction/Modify.js +++ b/src/ol/interaction/Modify.js @@ -142,10 +142,10 @@ export class ModifyEvent extends Event { * @param {ModifyEventType} type Type. * @param {Collection} features * The features modified. - * @param {import("../MapBrowserEvent.js").default} MapBrowserEvent + * @param {import("../MapBrowserEvent.js").default} mapBrowserEvent * Associated {@link module:ol/MapBrowserEvent~MapBrowserEvent}. */ - constructor(type, features, MapBrowserEvent) { + constructor(type, features, mapBrowserEvent) { super(type); /** @@ -160,7 +160,7 @@ export class ModifyEvent extends Event { * @type {import("../MapBrowserEvent.js").default} * @api */ - this.mapBrowserEvent = MapBrowserEvent; + this.mapBrowserEvent = mapBrowserEvent; } }