diff --git a/src/renderers/dom/shared/syntheticEvents/SyntheticClipboardEvent.js b/src/renderers/dom/shared/syntheticEvents/SyntheticClipboardEvent.js index 32f726d795c5f..908672ab86c4b 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 ae7e818e01c94..0bab1290bcbc9 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 7c7502ddb28bc..32f66345d1722 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 7f98237809ef2..08bf381b8b0f0 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,