From 7c63d0178daef797bcd8ed71f5fbc445a15192ac Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Thu, 13 Jul 2017 16:14:45 -0700 Subject: [PATCH] Add missing space to key warning (#10179) Found this when running the warnings script. --- src/renderers/shared/stack/reconciler/ReactChildReconciler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderers/shared/stack/reconciler/ReactChildReconciler.js b/src/renderers/shared/stack/reconciler/ReactChildReconciler.js index b15503d578..58d34e6797 100644 --- a/src/renderers/shared/stack/reconciler/ReactChildReconciler.js +++ b/src/renderers/shared/stack/reconciler/ReactChildReconciler.js @@ -46,7 +46,7 @@ function instantiateChild(childInstances, child, name, selfDebugID) { if (!keyUnique) { warning( false, - 'flattenChildren(...):' + + 'flattenChildren(...): ' + 'Encountered two children with the same key, `%s`. ' + 'Keys should be unique so that components maintain their identity ' + 'across updates. Non-unique keys may cause children to be ' +