From fa7461e25bb63188bc2a3d2eb5ea085dfc7c5f1a Mon Sep 17 00:00:00 2001 From: Shi Yan Date: Wed, 4 Oct 2017 18:45:39 -0500 Subject: [PATCH] Fix SyntheticEvent constructor comments (#11011) --- .../dom/shared/syntheticEvents/SyntheticClipboardEvent.js | 2 +- .../dom/shared/syntheticEvents/SyntheticCompositionEvent.js | 2 +- src/renderers/dom/shared/syntheticEvents/SyntheticDragEvent.js | 2 +- src/renderers/dom/shared/syntheticEvents/SyntheticInputEvent.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/renderers/dom/shared/syntheticEvents/SyntheticClipboardEvent.js b/src/renderers/dom/shared/syntheticEvents/SyntheticClipboardEvent.js index 32f726d795..908672ab86 100644 --- a/src/renderers/dom/shared/syntheticEvents/SyntheticClipboardEvent.js +++ b/src/renderers/dom/shared/syntheticEvents/SyntheticClipboardEvent.js @@ -27,7 +27,7 @@ var ClipboardEventInterface = { * @param {object} dispatchConfig Configuration used to dispatch this event. * @param {string} dispatchMarker Marker identifying the event target. * @param {object} nativeEvent Native browser event. - * @extends {SyntheticUIEvent} + * @extends {SyntheticEvent} */ function SyntheticClipboardEvent( dispatchConfig, diff --git a/src/renderers/dom/shared/syntheticEvents/SyntheticCompositionEvent.js b/src/renderers/dom/shared/syntheticEvents/SyntheticCompositionEvent.js index ae7e818e01..0bab1290bc 100644 --- a/src/renderers/dom/shared/syntheticEvents/SyntheticCompositionEvent.js +++ b/src/renderers/dom/shared/syntheticEvents/SyntheticCompositionEvent.js @@ -23,7 +23,7 @@ var CompositionEventInterface = { * @param {object} dispatchConfig Configuration used to dispatch this event. * @param {string} dispatchMarker Marker identifying the event target. * @param {object} nativeEvent Native browser event. - * @extends {SyntheticUIEvent} + * @extends {SyntheticEvent} */ function SyntheticCompositionEvent( dispatchConfig, diff --git a/src/renderers/dom/shared/syntheticEvents/SyntheticDragEvent.js b/src/renderers/dom/shared/syntheticEvents/SyntheticDragEvent.js index 7c7502ddb2..32f66345d1 100644 --- a/src/renderers/dom/shared/syntheticEvents/SyntheticDragEvent.js +++ b/src/renderers/dom/shared/syntheticEvents/SyntheticDragEvent.js @@ -23,7 +23,7 @@ var DragEventInterface = { * @param {object} dispatchConfig Configuration used to dispatch this event. * @param {string} dispatchMarker Marker identifying the event target. * @param {object} nativeEvent Native browser event. - * @extends {SyntheticUIEvent} + * @extends {SyntheticMouseEvent} */ function SyntheticDragEvent( dispatchConfig, diff --git a/src/renderers/dom/shared/syntheticEvents/SyntheticInputEvent.js b/src/renderers/dom/shared/syntheticEvents/SyntheticInputEvent.js index 7f98237809..08bf381b8b 100644 --- a/src/renderers/dom/shared/syntheticEvents/SyntheticInputEvent.js +++ b/src/renderers/dom/shared/syntheticEvents/SyntheticInputEvent.js @@ -24,7 +24,7 @@ var InputEventInterface = { * @param {object} dispatchConfig Configuration used to dispatch this event. * @param {string} dispatchMarker Marker identifying the event target. * @param {object} nativeEvent Native browser event. - * @extends {SyntheticUIEvent} + * @extends {SyntheticEvent} */ function SyntheticInputEvent( dispatchConfig,