diff --git a/docs/accessibility.md b/docs/accessibility.md
index e4262af6dae..141b40352b0 100644
--- a/docs/accessibility.md
+++ b/docs/accessibility.md
@@ -222,9 +222,9 @@ For example, in a window that contains sibling views `A` and `B`, setting `acces
### `accessibilityElementsHidden`
iOS
-A boolean value indicating whether the accessibility elements contained within this accessibility element are hidden.
+A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, are hidden.
-For example, in a window that contains sibling views `A` and `B`, setting `accessibilityElementsHidden` to `true` on view `B` causes VoiceOver to ignore the elements in view `B`. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`.
+For example, in a window that contains sibling views `A` and `B`, setting `accessibilityElementsHidden` to `true` on view `B` causes VoiceOver to ignore the `B` view and any elements it contains. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`.
### `aria-valuemax`
@@ -276,9 +276,9 @@ Indicates whether an expandable element is currently expanded or collapsed.
### `aria-hidden`
-Indicates whether the accessibility elements contained within this accessibility element are hidden.
+Indicates whether the element is hidden from assistive technologies.
-For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in view `B`.
+For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.
| Type | Default |
| ------- | ------- |
@@ -286,7 +286,7 @@ For example, in a window that contains sibling views `A` and `B`, setting `aria-
### `aria-label`
-Defines a string value that labels an interactive element.
+Defines a string value that can be used to name an element.
| Type |
| ------ |
diff --git a/docs/touchablewithoutfeedback.md b/docs/touchablewithoutfeedback.md
index ac991fa2b6c..c7e875156df 100644
--- a/docs/touchablewithoutfeedback.md
+++ b/docs/touchablewithoutfeedback.md
@@ -246,9 +246,9 @@ Indicates whether an expandable element is currently expanded or collapsed.
### `aria-hidden`
-Indicates whether the accessibility elements contained within this accessibility element are hidden.
+Indicates whether the element is hidden from assistive technologies.
-For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`.
+For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.
| Type | Default |
| ------- | ------- |
diff --git a/docs/view.md b/docs/view.md
index 9740ac55390..046a63392be 100644
--- a/docs/view.md
+++ b/docs/view.md
@@ -57,7 +57,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i
### `accessibilityElementsHidden` iOS
-A value indicating whether the accessibility elements contained within this accessibility element are hidden. Default is `false`.
+A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, are hidden. Default is `false`.
See the [Accessibility guide](accessibility.md#accessibilityelementshidden-ios) for more information.
@@ -254,9 +254,9 @@ Indicates whether an expandable element is currently expanded or collapsed.
### `aria-hidden`
-Indicates whether the accessibility elements contained within this accessibility element are hidden.
+Indicates whether the element is hidden from assistive technologies.
-For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`.
+For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.
| Type | Default |
| ------- | ------- |
diff --git a/website/versioned_docs/version-0.80/accessibility.md b/website/versioned_docs/version-0.80/accessibility.md
index 0b42f659a64..d6a4547ded2 100644
--- a/website/versioned_docs/version-0.80/accessibility.md
+++ b/website/versioned_docs/version-0.80/accessibility.md
@@ -222,9 +222,9 @@ For example, in a window that contains sibling views `A` and `B`, setting `acces
### `accessibilityElementsHidden` iOS
-A boolean value indicating whether the accessibility elements contained within this accessibility element are hidden.
+A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, are hidden.
-For example, in a window that contains sibling views `A` and `B`, setting `accessibilityElementsHidden` to `true` on view `B` causes VoiceOver to ignore the elements in view `B`. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`.
+For example, in a window that contains sibling views `A` and `B`, setting `accessibilityElementsHidden` to `true` on view `B` causes VoiceOver to ignore the `B` view and any elements it contains. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`.
### `aria-valuemax`
@@ -276,9 +276,9 @@ Indicates whether an expandable element is currently expanded or collapsed.
### `aria-hidden`
-Indicates whether the accessibility elements contained within this accessibility element are hidden.
+Indicates whether the element is hidden from assistive technologies.
-For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in view `B`.
+For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.
| Type | Default |
| ------- | ------- |
diff --git a/website/versioned_docs/version-0.80/touchablewithoutfeedback.md b/website/versioned_docs/version-0.80/touchablewithoutfeedback.md
index 40fdf10fc58..2764327ad1b 100644
--- a/website/versioned_docs/version-0.80/touchablewithoutfeedback.md
+++ b/website/versioned_docs/version-0.80/touchablewithoutfeedback.md
@@ -244,9 +244,9 @@ Indicates whether an expandable element is currently expanded or collapsed.
### `aria-hidden`
-Indicates whether the accessibility elements contained within this accessibility element are hidden.
+Indicates whether the element is hidden from assistive technologies.
-For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`.
+For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.
| Type | Default |
| ------- | ------- |
diff --git a/website/versioned_docs/version-0.80/view.md b/website/versioned_docs/version-0.80/view.md
index fd096fb30c5..75a78380471 100644
--- a/website/versioned_docs/version-0.80/view.md
+++ b/website/versioned_docs/version-0.80/view.md
@@ -57,7 +57,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i
### `accessibilityElementsHidden` iOS
-A value indicating whether the accessibility elements contained within this accessibility element are hidden. Default is `false`.
+A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, are hidden. Default is `false`.
See the [Accessibility guide](accessibility.md#accessibilityelementshidden-ios) for more information.
@@ -254,9 +254,9 @@ Indicates whether an expandable element is currently expanded or collapsed.
### `aria-hidden`
-Indicates whether the accessibility elements contained within this accessibility element are hidden.
+Indicates whether the element is hidden from assistive technologies.
-For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`.
+For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.
| Type | Default |
| ------- | ------- |
diff --git a/website/versioned_docs/version-0.81/accessibility.md b/website/versioned_docs/version-0.81/accessibility.md
index 0b42f659a64..d6a4547ded2 100644
--- a/website/versioned_docs/version-0.81/accessibility.md
+++ b/website/versioned_docs/version-0.81/accessibility.md
@@ -222,9 +222,9 @@ For example, in a window that contains sibling views `A` and `B`, setting `acces
### `accessibilityElementsHidden` iOS
-A boolean value indicating whether the accessibility elements contained within this accessibility element are hidden.
+A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, are hidden.
-For example, in a window that contains sibling views `A` and `B`, setting `accessibilityElementsHidden` to `true` on view `B` causes VoiceOver to ignore the elements in view `B`. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`.
+For example, in a window that contains sibling views `A` and `B`, setting `accessibilityElementsHidden` to `true` on view `B` causes VoiceOver to ignore the `B` view and any elements it contains. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`.
### `aria-valuemax`
@@ -276,9 +276,9 @@ Indicates whether an expandable element is currently expanded or collapsed.
### `aria-hidden`
-Indicates whether the accessibility elements contained within this accessibility element are hidden.
+Indicates whether the element is hidden from assistive technologies.
-For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in view `B`.
+For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.
| Type | Default |
| ------- | ------- |
diff --git a/website/versioned_docs/version-0.81/touchablewithoutfeedback.md b/website/versioned_docs/version-0.81/touchablewithoutfeedback.md
index 40fdf10fc58..2764327ad1b 100644
--- a/website/versioned_docs/version-0.81/touchablewithoutfeedback.md
+++ b/website/versioned_docs/version-0.81/touchablewithoutfeedback.md
@@ -244,9 +244,9 @@ Indicates whether an expandable element is currently expanded or collapsed.
### `aria-hidden`
-Indicates whether the accessibility elements contained within this accessibility element are hidden.
+Indicates whether the element is hidden from assistive technologies.
-For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`.
+For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.
| Type | Default |
| ------- | ------- |
diff --git a/website/versioned_docs/version-0.81/view.md b/website/versioned_docs/version-0.81/view.md
index fd096fb30c5..75a78380471 100644
--- a/website/versioned_docs/version-0.81/view.md
+++ b/website/versioned_docs/version-0.81/view.md
@@ -57,7 +57,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i
### `accessibilityElementsHidden` iOS
-A value indicating whether the accessibility elements contained within this accessibility element are hidden. Default is `false`.
+A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, are hidden. Default is `false`.
See the [Accessibility guide](accessibility.md#accessibilityelementshidden-ios) for more information.
@@ -254,9 +254,9 @@ Indicates whether an expandable element is currently expanded or collapsed.
### `aria-hidden`
-Indicates whether the accessibility elements contained within this accessibility element are hidden.
+Indicates whether the element is hidden from assistive technologies.
-For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`.
+For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.
| Type | Default |
| ------- | ------- |