diff --git a/docs/src/app/shared/guide-items/guide-items.ts b/docs/src/app/shared/guide-items/guide-items.ts index 296825e0d3ff..feb5aac17361 100644 --- a/docs/src/app/shared/guide-items/guide-items.ts +++ b/docs/src/app/shared/guide-items/guide-items.ts @@ -52,7 +52,7 @@ const GUIDES: GuideItem[] = [ id: 'creating-a-custom-stepper-using-the-cdk-stepper', name: 'Custom stepper using the CdkStepper', document: '/docs-content/guides/creating-a-custom-stepper-using-the-cdk-stepper.md.html', - overview: 'Create a custom stepper components using Angular CDK.', + overview: 'Create a custom stepper component using Angular CDK.', }, { id: 'using-component-harnesses', diff --git a/guides/creating-a-custom-stepper-using-the-cdk-stepper.md b/guides/creating-a-custom-stepper-using-the-cdk-stepper.md index 8438de47e8a1..dd550c55a0cb 100644 --- a/guides/creating-a-custom-stepper-using-the-cdk-stepper.md +++ b/guides/creating-a-custom-stepper-using-the-cdk-stepper.md @@ -1,8 +1,8 @@ # Creating a custom stepper using the CDK stepper -The [CDK stepper](https://material.angular.dev/cdk/stepper/overview) allows to build a custom stepper which you can completely style yourself without any specific Material Design styling. +The [CDK stepper](https://material.angular.dev/cdk/stepper/overview) allows you to build a custom stepper which you can completely style yourself without any specific Material Design styling. -In this guide, we'll learn how we can build our own custom stepper using the CDK stepper. Here is what we'll build by the end of this guide: +In this guide, we'll learn how to build our own custom stepper using the CDK stepper. Here is what we'll build by the end of this guide: @@ -126,7 +126,7 @@ If you want to iterate over your steps and use your own custom component you can The above example allows the user to freely navigate between all steps. The `CdkStepper` additionally provides the linear mode which requires the user to complete previous steps before proceeding. -A simple example without using forms could look this way: +A simple example without using forms could look like this: **app.component.html**