From b911e8d5fe246198ec6c0cff20245087583828b9 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Fri, 22 Mar 2019 23:50:42 -0700 Subject: [PATCH] Make sentence clearer (#12786) I agree with @ChristopherBiscardi this sentence needs a bit more :-) --- docs/docs/creating-a-transformer-plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/creating-a-transformer-plugin.md b/docs/docs/creating-a-transformer-plugin.md index 82203d25650b0..70e626ce9440e 100644 --- a/docs/docs/creating-a-transformer-plugin.md +++ b/docs/docs/creating-a-transformer-plugin.md @@ -272,7 +272,7 @@ Check out the [full source code](https://github.com/gatsbyjs/gatsby/blob/master/ Sometimes transforming properties costs time and resources. In order to avoid recreating these properties at each run, you can profit from the global cache mechanism Gatsby provides. -Cache keys should at least contain the contentDigest of the concerned. For example, the `gatsby-transformer-remark` uses the following cache key for the html node: +Cache keys should at least contain the contentDigest of the concerned node. For example, the `gatsby-transformer-remark` uses the following cache key for the html node: ```javascript:title=extend-node-type.js const htmlCacheKey = node =>