From dd992dede88e3185f8bda56be0fb89536fe3ef23 Mon Sep 17 00:00:00 2001 From: Kohei TAKATA Date: Thu, 9 Jul 2015 15:11:20 +0900 Subject: [PATCH] Enclose a name of function in back quote --- docs/08.1-more-about-refs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/08.1-more-about-refs.md b/docs/08.1-more-about-refs.md index 6c915766..31348fcc 100644 --- a/docs/08.1-more-about-refs.md +++ b/docs/08.1-more-about-refs.md @@ -131,7 +131,7 @@ It's as simple as assigning a `ref` attribute to anything returned from `render` }); ``` -In this example, our render function returns a description of an `` instance. But the true instance is accessed via `this.refs.theInput`. As long as a child component with `ref="theInput"` is returned from render, `this.refs.theInput` will access the proper instance. This even works on higher level (non-DOM) components such as ``. +In this example, our render function returns a description of an `` instance. But the true instance is accessed via `this.refs.theInput`. As long as a child component with `ref="theInput"` is returned from `render`, `this.refs.theInput` will access the proper instance. This even works on higher level (non-DOM) components such as ``. ## Summary