From 2fb0606ba16c69afdca7409e2aa0291f03187902 Mon Sep 17 00:00:00 2001 From: denisx Date: Fri, 24 Aug 2018 16:10:52 +0300 Subject: [PATCH] remove redundant space at comment --- src/components/connectAdvanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/connectAdvanced.js b/src/components/connectAdvanced.js index 46caa481d..4133e20fb 100644 --- a/src/components/connectAdvanced.js +++ b/src/components/connectAdvanced.js @@ -202,7 +202,7 @@ export default function connectAdvanced( const parentSub = (this.propsMode ? this.props : this.context)[subscriptionKey] this.subscription = new Subscription(this.store, parentSub, this.onStateChange.bind(this)) - // `notifyNestedSubs` is duplicated to handle the case where the component is unmounted in + // `notifyNestedSubs` is duplicated to handle the case where the component is unmounted in // the middle of the notification loop, where `this.subscription` will then be null. An // extra null check every change can be avoided by copying the method onto `this` and then // replacing it with a no-op on unmount. This can probably be avoided if Subscription's