From f81d52b854d87a4dc78cf9b60073389597e631a2 Mon Sep 17 00:00:00 2001 From: Daniel Hejl Date: Sat, 2 May 2015 22:22:20 -0700 Subject: [PATCH] Removed redundant grave accent character from Component API docs --- docs/docs/ref-02-component-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/ref-02-component-api.md b/docs/docs/ref-02-component-api.md index 31b08b0bb2..2422d0c614 100644 --- a/docs/docs/ref-02-component-api.md +++ b/docs/docs/ref-02-component-api.md @@ -31,7 +31,7 @@ It's also possible to pass a function with the signature `function(state, props) ```javascript setState(function(previousState, currentProps) { return {myInteger: previousState.myInteger + 1}; -});` +}); ``` The second (optional) parameter is a callback function that will be executed once `setState` is completed and the component is re-rendered.