From 3f367e2688096987fad44d58ea4cbf1eac4f763b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Mon, 2 Feb 2015 11:18:10 -0800 Subject: [PATCH] Merge pull request #3011 from koba04/fix-coponent-api-doc Fix consistency of component api document --- docs/docs/ref-02-component-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/ref-02-component-api.md b/docs/docs/ref-02-component-api.md index 2deeef703e..a6989c5371 100644 --- a/docs/docs/ref-02-component-api.md +++ b/docs/docs/ref-02-component-api.md @@ -39,7 +39,7 @@ replaceState(object nextState[, function callback]) Like `setState()` but deletes any pre-existing state keys that are not in nextState. -### forceUpdate() +### forceUpdate ```javascript forceUpdate([function callback]) @@ -61,7 +61,7 @@ DOMElement getDOMNode() If this component has been mounted into the DOM, this returns the corresponding native browser DOM element. This method is useful for reading values out of the DOM, such as form field values and performing DOM measurements. When `render` returns `null` or `false`, `this.getDOMNode()` returns `null`. -### isMounted() +### isMounted ```javascript bool isMounted()