From 75186d3f83d052906189abc29f3256c4cfc9c903 Mon Sep 17 00:00:00 2001 From: Amanda Johnston <90629384+amandaejohnston@users.noreply.github.com> Date: Fri, 31 Mar 2023 10:17:36 -0500 Subject: [PATCH] docs(content): fix typo in forceOverscroll description (#27077) --- core/src/components.d.ts | 4 ++-- core/src/components/content/content.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/components.d.ts b/core/src/components.d.ts index b0481584cb..59cc60d69b 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -765,7 +765,7 @@ export namespace Components { */ "color"?: Color; /** - * If `true` and the content does not cause an overflow scroll, the scroll interaction will cause a bounce. If the content exceeds the bounds of ionContent, nothing will change. Note, the does not disable the system bounce on iOS. That is an OS level setting. + * If `true` and the content does not cause an overflow scroll, the scroll interaction will cause a bounce. If the content exceeds the bounds of ionContent, nothing will change. Note, this does not disable the system bounce on iOS. That is an OS level setting. */ "forceOverscroll"?: boolean; /** @@ -4791,7 +4791,7 @@ declare namespace LocalJSX { */ "color"?: Color; /** - * If `true` and the content does not cause an overflow scroll, the scroll interaction will cause a bounce. If the content exceeds the bounds of ionContent, nothing will change. Note, the does not disable the system bounce on iOS. That is an OS level setting. + * If `true` and the content does not cause an overflow scroll, the scroll interaction will cause a bounce. If the content exceeds the bounds of ionContent, nothing will change. Note, this does not disable the system bounce on iOS. That is an OS level setting. */ "forceOverscroll"?: boolean; /** diff --git a/core/src/components/content/content.tsx b/core/src/components/content/content.tsx index fc6308d89f..b0d6ca1161 100644 --- a/core/src/components/content/content.tsx +++ b/core/src/components/content/content.tsx @@ -75,7 +75,7 @@ export class Content implements ComponentInterface { /** * If `true` and the content does not cause an overflow scroll, the scroll interaction will cause a bounce. * If the content exceeds the bounds of ionContent, nothing will change. - * Note, the does not disable the system bounce on iOS. That is an OS level setting. + * Note, this does not disable the system bounce on iOS. That is an OS level setting. */ @Prop({ mutable: true }) forceOverscroll?: boolean;