From b7b3577c1f59fa261fb392d63cf9e2dd484a2e7e Mon Sep 17 00:00:00 2001 From: Alex Louden Date: Fri, 19 Aug 2022 15:04:53 +0800 Subject: [PATCH] fix(gatsby-plugin-react-helmet): Typo in `onPreInit` warning (#36419) --- 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` ) }