Skip to content

Commit

Permalink
Fix SyntheticEvent constructor comments (facebook#11011)
Browse files Browse the repository at this point in the history
  • Loading branch information
yenshih authored and gaearon committed Oct 4, 2017
1 parent a2efa51 commit fa7461e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -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,
Expand Down
Expand Up @@ -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,
Expand Down
Expand Up @@ -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,
Expand Down
Expand Up @@ -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,
Expand Down

0 comments on commit fa7461e

Please sign in to comment.