From e518c6b713a7e3bc287726ea59dda9f7211026e6 Mon Sep 17 00:00:00 2001
From: Matthew Deutsch <700930+matthewdeutsch@users.noreply.github.com>
Date: Tue, 8 Dec 2020 14:37:55 -0500
Subject: [PATCH] fixing textarea doc links
---
packages/@react-spectrum/textfield/docs/TextArea.mdx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/packages/@react-spectrum/textfield/docs/TextArea.mdx b/packages/@react-spectrum/textfield/docs/TextArea.mdx
index 324cd84c6d1..53f62a19489 100644
--- a/packages/@react-spectrum/textfield/docs/TextArea.mdx
+++ b/packages/@react-spectrum/textfield/docs/TextArea.mdx
@@ -149,7 +149,7 @@ function Example() {
### Quiet
-[View guidelines](https://spectrum.adobe.com/page/text-field/#Quiet)
+[View guidelines](https://spectrum.adobe.com/page/text-area/#Quiet)
In addition to changing the visual style of the TextArea, the `isQuiet` prop removes the ability to manually resize the TextArea.
To compensate, the TextArea automatically adjusts its own height to accommodate for additional lines of text.
@@ -160,7 +160,7 @@ To compensate, the TextArea automatically adjusts its own height to accommodate
### Disabled
-[View guidelines](https://spectrum.adobe.com/page/text-field/#Disabled)
+[View guidelines](https://spectrum.adobe.com/page/text-area/#Disabled)
```tsx example
@@ -176,7 +176,7 @@ and the contents can still be copied. See [the MDN docs](https://developer.mozil
```
### Label alignment and position
-[View guidelines](https://spectrum.adobe.com/page/text-field/#Label-position)
+[View guidelines](https://spectrum.adobe.com/page/text-area/#Label-position)
By default, the label is positioned above the TextArea. The `labelPosition` prop can be used to position the label to the side. The `labelAlign` prop can be used to align the label as "start" or "end". For left-to-right (LTR) languages, "start" refers to the left most edge of the TextArea and "end" refers to the right most edge. For right-to-left (RTL) languages, this is flipped.
@@ -186,7 +186,7 @@ By default, the label is positioned above the TextArea. The `labelPosition` prop
### Custom width
-[View guidelines](https://spectrum.adobe.com/page/text-field/#Width)
+[View guidelines](https://spectrum.adobe.com/page/text-area/#Width)
```tsx example