From 92dffb71c7dab94a3dfda9fc4591c0369b63cc2d Mon Sep 17 00:00:00 2001 From: Alex Luong Date: Mon, 28 Oct 2019 05:20:14 -0500 Subject: [PATCH] docs(gatsby-plugin-mdx): fix error in MDXProvider component ref (#19075) --- packages/gatsby-plugin-mdx/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-plugin-mdx/README.md b/packages/gatsby-plugin-mdx/README.md index d518350a10a99..5d99b8487b430 100644 --- a/packages/gatsby-plugin-mdx/README.md +++ b/packages/gatsby-plugin-mdx/README.md @@ -472,7 +472,7 @@ The following components can be customized with the MDXProvider: | `em` | [Emphasis](https://github.com/syntax-tree/mdast#emphasis) | `_emphasis_` | | `strong` | [Strong](https://github.com/syntax-tree/mdast#strong) | `**strong**` | | `delete` | [Delete](https://github.com/syntax-tree/mdast#delete) | `~~strikethrough~~` | -| `code` | [InlineCode](https://github.com/syntax-tree/mdast#inlinecode) | | +| `inlineCode` | [InlineCode](https://github.com/syntax-tree/mdast#inlinecode) | | | `hr` | [Break](https://github.com/syntax-tree/mdast#break) | `---` | | `a` | [Link](https://github.com/syntax-tree/mdast#link) | `` or `[MDX](https://mdxjs.com)` | | `img` | [Image](https://github.com/syntax-tree/mdast#image) | `![alt](https://mdx-logo.now.sh)` |