From 2e9b16442c58c99531c1b0f83a906f8c17b3ad02 Mon Sep 17 00:00:00 2001 From: Phil Quinn Date: Sat, 22 Oct 2016 21:59:54 +0100 Subject: [PATCH] correct order of params in documentation (#7989) --- contributing/implementation-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing/implementation-notes.md b/contributing/implementation-notes.md index caa7b2c6..64e1b26a 100644 --- a/contributing/implementation-notes.md +++ b/contributing/implementation-notes.md @@ -631,7 +631,7 @@ Instead, we have to unmount the existing internal instance and mount the new one // Replace the old node with the new one // Note: this is renderer-specific code and // ideally should live outside of CompositeComponent: - prevNode.parentNode.replaceChild(prevNode, nextNode); + prevNode.parentNode.replaceChild(nextNode, prevNode); } } ```