docs(content): fix typo in forceOverscroll description (#27077)

This commit is contained in:
Amanda Johnston
2023-03-31 10:17:36 -05:00
committed by GitHub
parent cbf7f7286e
commit 75186d3f83
2 changed files with 3 additions and 3 deletions

View File

@ -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;
/**

View File

@ -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;