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