diff options
author | 2022-07-25 16:39:58 -0300 | |
---|---|---|
committer | 2022-07-25 14:39:58 -0500 | |
commit | ab8f4901a259c78534823e7bd22c4f768683ae4b (patch) | |
tree | cb67c44ead5b4452064ff475928cf8237a39fad4 | |
parent | 813d3927172e530361be43037e29bc37e4ff76f2 (diff) | |
download | astro-ab8f4901a259c78534823e7bd22c4f768683ae4b.tar.gz astro-ab8f4901a259c78534823e7bd22c4f768683ae4b.tar.zst astro-ab8f4901a259c78534823e7bd22c4f768683ae4b.zip |
[docs content] use "version" not since (#4043)
* [docs content] use "version" not since
Change to use `@version` to create the `<Since />` component for docs. (not `@since)
Also, quick sentence edit.
* Update packages/astro/src/@types/astro.ts
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
-rw-r--r-- | packages/astro/src/@types/astro.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index d4ee10dd4..5003f42ab 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -710,7 +710,7 @@ export interface AstroUserConfig { * @name Legacy Flags * @description * To help some users migrate between versions of Astro, we occasionally introduce `legacy` flags. - * These flags let you to opt-in to some deprecated or otherwise outdated behavior of Astro + * These flags allow you to opt in to some deprecated or otherwise outdated behavior of Astro * in the latest version, so that you can continue to upgrade and take advantage of new Astro releases. */ legacy?: { @@ -719,7 +719,7 @@ export interface AstroUserConfig { * @name legacy.astroFlavoredMarkdown * @type {boolean} * @default `false` - * @since 1.0.0-rc + * @version 1.0.0-rc.1 * @description * Enable Astro's pre-v1.0 support for components and JSX expressions in `.md` Markdown files. * In Astro `1.0.0-rc`, this original behavior was removed as the default, in favor of our new [MDX integration](/en/guides/integrations-guide/mdx/). |