Browse Source

correct order of params in documentation (#7989)

main
Phil Quinn 8 years ago
committed by Dan Abramov
parent
commit
2e9b16442c
  1. 2
      contributing/implementation-notes.md

2
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);
}
}
```

Loading…
Cancel
Save