Skip to content

Commit

Permalink
Add some semicolons for linting. (#7390)
Browse files Browse the repository at this point in the history
(cherry picked from commit 8aed0cd)
  • Loading branch information
nhunzaker authored and zpao committed Aug 15, 2016
1 parent 5372e66 commit 8e79c9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/isomorphic/classic/types/checkReactTypeSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if (
// https://github.com/facebook/react/issues/7240
// Remove the inline requires when we don't need them anymore:
// https://github.com/facebook/react/pull/7178
ReactComponentTreeHook = require('ReactComponentTreeHook')
ReactComponentTreeHook = require('ReactComponentTreeHook');
}

var loggedTypeFailures = {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if (
// https://github.com/facebook/react/issues/7240
// Remove the inline requires when we don't need them anymore:
// https://github.com/facebook/react/pull/7178
ReactComponentTreeHook = require('ReactComponentTreeHook')
ReactComponentTreeHook = require('ReactComponentTreeHook');
}

function instantiateChild(childInstances, child, name, selfDebugID) {
Expand Down
2 changes: 1 addition & 1 deletion src/shared/utils/flattenChildren.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if (
// https://github.com/facebook/react/issues/7240
// Remove the inline requires when we don't need them anymore:
// https://github.com/facebook/react/pull/7178
ReactComponentTreeHook = require('ReactComponentTreeHook')
ReactComponentTreeHook = require('ReactComponentTreeHook');
}

/**
Expand Down

0 comments on commit 8e79c9f

Please sign in to comment.