diff options
author | 2021-12-13 23:18:22 +0100 | |
---|---|---|
committer | 2021-12-13 17:18:22 -0500 | |
commit | bc080288fe285c83c052cc5ea717aa67ce7142fc (patch) | |
tree | 394c0f1d904da0a9801171385fdec0a8174b2be5 /docs/src | |
parent | bd1956b72f766a4bed6da00cbe935d628c7116f1 (diff) | |
download | astro-bc080288fe285c83c052cc5ea717aa67ce7142fc.tar.gz astro-bc080288fe285c83c052cc5ea717aa67ce7142fc.tar.zst astro-bc080288fe285c83c052cc5ea717aa67ce7142fc.zip |
Replace quote character with standard apostrophe (#2142)
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/guides/rss.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/guides/rss.md b/docs/src/pages/guides/rss.md index e13123dc7..7581377a2 100644 --- a/docs/src/pages/guides/rss.md +++ b/docs/src/pages/guides/rss.md @@ -21,7 +21,7 @@ export async function getStaticPaths({rss}) { // Generate an RSS feed from this collection rss({ // The RSS Feed title, description, and custom metadata. - title: 'Don’s Blog', + title: 'Don\'s Blog', description: 'An example blog on Astro', customData: `<language>en-us</language>`, // The list of items for your RSS feed, sorted. |