diff --git a/README.md b/README.md index 79b79900..44fd26c0 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,6 @@ This `helmet` instance contains the following properties: - `script` - `style` - `title` -- `titleAttributes` Each property contains `toComponent()` and `toString()` methods. Use whichever is appropriate for your environment. For attributes, use the JSX spread operator on the object returned by `toComponent()`. E.g: @@ -114,7 +113,7 @@ const html = ` - ${helmet.title.toString()} + ${helmet.title.toString()} ${helmet.meta.toString()} ${helmet.link.toString()} @@ -136,7 +135,7 @@ function HTML () { return ( - {helmet.title.toComponent()} + {helmet.title.toComponent()} {helmet.meta.toComponent()} {helmet.link.toComponent()}