From 1463b02b8869ed58925ffcae26eff560c0d53f97 Mon Sep 17 00:00:00 2001 From: Alex Louden Date: Fri, 19 Aug 2022 13:49:10 +0800 Subject: [PATCH] Fix typo --- packages/gatsby-plugin-react-helmet/src/gatsby-node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-plugin-react-helmet/src/gatsby-node.js b/packages/gatsby-plugin-react-helmet/src/gatsby-node.js index aab9251532a76..b879f3575864e 100644 --- a/packages/gatsby-plugin-react-helmet/src/gatsby-node.js +++ b/packages/gatsby-plugin-react-helmet/src/gatsby-node.js @@ -2,6 +2,6 @@ exports.pluginOptionsSchema = ({ Joi }) => Joi.object({}) exports.onPreInit = ({ reporter }) => { reporter.warn( - `gatsby-plugin-react-helmet: Gatsby now has built-in support for modyfing the document head. Learn more at https://gatsby.dev/gatsby-head` + `gatsby-plugin-react-helmet: Gatsby now has built-in support for modifying the document head. Learn more at https://gatsby.dev/gatsby-head` ) }