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;