From 032edd2c3ce8836490a3a55bbd99454de8f3a9ae Mon Sep 17 00:00:00 2001 From: Chafic Najjar Date: Tue, 13 Mar 2018 14:27:23 +0200 Subject: [PATCH] Change "header" to "heading" in hello-world.html h1-h6 elements are called "headings", not "headers" (source: https://www.w3.org/TR/html52/sections.html#headings-and-sections). --- content/docs/hello-world.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/hello-world.md b/content/docs/hello-world.md index feb56394..4882d78b 100644 --- a/content/docs/hello-world.md +++ b/content/docs/hello-world.md @@ -23,7 +23,7 @@ ReactDOM.render( ); ``` -It renders a header saying "Hello, world!" on the page. +It renders a heading saying "Hello, world!" on the page. The next few sections will gradually introduce you to using React. We will examine the building blocks of React apps: elements and components. Once you master them, you can create complex apps from small reusable pieces.