From 91029ffac12f28b104e5fd779fd834abb7d4e437 Mon Sep 17 00:00:00 2001 From: Chris Grovers Date: Sat, 25 Apr 2015 15:06:59 -0700 Subject: [PATCH] Fixed Formatting. --- src/classic/class/ReactClass.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/classic/class/ReactClass.js b/src/classic/class/ReactClass.js index 68806d0006..0a1fdea404 100644 --- a/src/classic/class/ReactClass.js +++ b/src/classic/class/ReactClass.js @@ -468,7 +468,7 @@ function mixSpecIntoComponent(Constructor, spec) { } if (name === MIXINS_KEY) { - // We have already handled mixins in a special case above + // We have already handled mixins in a special case above. continue; } @@ -501,7 +501,7 @@ function mixSpecIntoComponent(Constructor, spec) { if (isAlreadyDefined) { var specPolicy = ReactClassInterface[name]; - // These cases should already be caught by validateMethodOverride + // These cases should already be caught by validateMethodOverride. invariant( isReactClassMethod && ( specPolicy === SpecPolicy.DEFINE_MANY_MERGED || @@ -873,7 +873,7 @@ var ReactClass = { mixSpecIntoComponent(Constructor, spec); - // Initialize the defaultProps property after all mixins have been merged + // Initialize the defaultProps property after all mixins have been merged. if (Constructor.getDefaultProps) { Constructor.defaultProps = Constructor.getDefaultProps(); }