diff --git a/ionic/components/content/content.ts b/ionic/components/content/content.ts index dfc7e6a948..af6ce2364b 100644 --- a/ionic/components/content/content.ts +++ b/ionic/components/content/content.ts @@ -243,7 +243,7 @@ export class Content extends Ion { } /** - * Scroll to the specified position. + * Scroll to the top of the content component. * * ```ts * @Page({ @@ -261,7 +261,7 @@ export class Content extends Ion { * this.content = this.app.getComponent('my-content'); * } * scrollTop() { - * this.content.scrollTop(); + * this.content.scrollToTop(); * } * } * ```