From 6c02d577bc6411fa29cc6422874dff3a42fd8f1b Mon Sep 17 00:00:00 2001 From: Skyler Shaw Date: Sun, 7 Oct 2018 19:06:09 +0100 Subject: [PATCH] Fix diff highlighting in StaticQuery example `/>` on line 49 of the StaticQuery example should be highlighted, as it's the closing brace for the newly added `` component tag. --- docs/tutorial/part-four/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/part-four/index.md b/docs/tutorial/part-four/index.md index f6791b2abd6f0..59a243efe5f13 100644 --- a/docs/tutorial/part-four/index.md +++ b/docs/tutorial/part-four/index.md @@ -290,7 +290,7 @@ Page queries live outside of the component definition -- by convention at the en Go ahead and add a `` to your `src/components/layout.js` file, and a `{data.site.siteMetadata.title}` reference that uses this data. When you are done your file looks like this: -```jsx{3,8-18,35,48}:title=src/components/layout.js +```jsx{3,8-18,35,48-49}:title=src/components/layout.js import React from "react" import { css } from "react-emotion" import { StaticQuery, Link, graphql } from "gatsby"