diff options
author | 2022-10-11 11:17:16 +0330 | |
---|---|---|
committer | 2022-10-11 15:47:16 +0800 | |
commit | 8d2d0c3c03d3192973c24dc57a88b03e2ad98fd8 (patch) | |
tree | cd3e26ca136d50aa78e1d8d8813f3f16fe435e09 | |
parent | 0f2a88ba5c19318854be12cc81609f2dbc5012f7 (diff) | |
download | astro-8d2d0c3c03d3192973c24dc57a88b03e2ad98fd8.tar.gz astro-8d2d0c3c03d3192973c24dc57a88b03e2ad98fd8.tar.zst astro-8d2d0c3c03d3192973c24dc57a88b03e2ad98fd8.zip |
fix a typo in Code component's wrap prop (#5050)
Diffstat (limited to '')
-rw-r--r-- | packages/astro/components/Code.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/components/Code.astro b/packages/astro/components/Code.astro index 8a4d50c7f..6728e13f1 100644 --- a/packages/astro/components/Code.astro +++ b/packages/astro/components/Code.astro @@ -24,7 +24,7 @@ export interface Props { /** * Enable word wrapping. * - true: enabled. - * - false: enabled. + * - false: disabled. * - null: All overflow styling removed. Code will overflow the element by default. * * @default false |