From 1dccf07a890a62a7e1f8502aec564e1256f4cb2e Mon Sep 17 00:00:00 2001 From: Alex Krolick Date: Tue, 3 Apr 2018 10:13:42 -0700 Subject: [PATCH] ~the~ fixes #763 --- content/docs/refs-and-the-dom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/refs-and-the-dom.md b/content/docs/refs-and-the-dom.md index 5a63d262e..12ea1df70 100644 --- a/content/docs/refs-and-the-dom.md +++ b/content/docs/refs-and-the-dom.md @@ -37,7 +37,7 @@ Your first inclination may be to use refs to "make things happen" in your app. I ### Creating Refs -Refs are created using `React.createRef()` and attached to React elements via the `ref` attribute. Refs are commonly assigned to an instance property when a component is constructed so they can be referenced throughout the the component. +Refs are created using `React.createRef()` and attached to React elements via the `ref` attribute. Refs are commonly assigned to an instance property when a component is constructed so they can be referenced throughout the component. ```javascript{4,7} class MyComponent extends React.Component {