Skip to content

Commit b6e4657

Browse files
committed
main - 3a308a8 docs: correct grammatical errors in custom stepper guide (#31635)
1 parent 1ec5a42 commit b6e4657

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs-content/guides/creating-a-custom-stepper-using-the-cdk-stepper.md.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<div class="docs-markdown"><h1>Creating a custom stepper using the CDK stepper</h1><p>The <a href="https://material.angular.dev/cdk/stepper/overview">CDK stepper</a> allows to build a custom stepper which you can completely style yourself without any specific Material Design styling.</p>
2-
<p>In this guide, we&#39;ll learn how we can build our own custom stepper using the CDK stepper. Here is what we&#39;ll build by the end of this guide:</p>
1+
<div class="docs-markdown"><h1>Creating a custom stepper using the CDK stepper</h1><p>The <a href="https://material.angular.dev/cdk/stepper/overview">CDK stepper</a> allows you to build a custom stepper which you can completely style yourself without any specific Material Design styling.</p>
2+
<p>In this guide, we&#39;ll learn how to build our own custom stepper using the CDK stepper. Here is what we&#39;ll build by the end of this guide:</p>
33
</div><div material-docs-example="cdk-custom-stepper-without-form"></div><div class="docs-markdown">
44

55

@@ -99,7 +99,7 @@ <h2 id="linear-mode" class="docs-header-link">
9999
Linear mode
100100
</h2>
101101
<p>The above example allows the user to freely navigate between all steps. The <code>CdkStepper</code> additionally provides the linear mode which requires the user to complete previous steps before proceeding.</p>
102-
<p>A simple example without using forms could look this way:</p>
102+
<p>A simple example without using forms could look like this:</p>
103103
<p><strong>app.component.html</strong></p>
104104
<pre><code class="language-html"><span class="hljs-tag">&lt;<span class="hljs-name">app-custom-stepper</span> <span class="hljs-attr">linear</span>&gt;</span>
105105
<span class="hljs-tag">&lt;<span class="hljs-name">cdk-step</span> <span class="hljs-attr">editable</span>=<span class="hljs-string">&quot;false&quot;</span> [<span class="hljs-attr">completed</span>]=<span class="hljs-string">&quot;completed&quot;</span>&gt;</span>

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/components-examples",
3-
"version": "20.2.0-next.2+sha-b2c7abf",
3+
"version": "20.2.0-next.2+sha-3a308a8",
44
"description": "Angular Components Examples",
55
"private": true,
66
"repository": {
@@ -259,15 +259,15 @@
259259
},
260260
"homepage": "https://github.com/angular/components#readme",
261261
"peerDependencies": {
262-
"@angular/cdk": "20.2.0-next.2+sha-b2c7abf",
263-
"@angular/cdk-experimental": "20.2.0-next.2+sha-b2c7abf",
262+
"@angular/cdk": "20.2.0-next.2+sha-3a308a8",
263+
"@angular/cdk-experimental": "20.2.0-next.2+sha-3a308a8",
264264
"@angular/core": "^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0",
265265
"@angular/common": "^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0",
266-
"@angular/material": "20.2.0-next.2+sha-b2c7abf",
267-
"@angular/material-experimental": "20.2.0-next.2+sha-b2c7abf",
268-
"@angular/material-moment-adapter": "20.2.0-next.2+sha-b2c7abf",
269-
"@angular/material-luxon-adapter": "20.2.0-next.2+sha-b2c7abf",
270-
"@angular/material-date-fns-adapter": "20.2.0-next.2+sha-b2c7abf"
266+
"@angular/material": "20.2.0-next.2+sha-3a308a8",
267+
"@angular/material-experimental": "20.2.0-next.2+sha-3a308a8",
268+
"@angular/material-moment-adapter": "20.2.0-next.2+sha-3a308a8",
269+
"@angular/material-luxon-adapter": "20.2.0-next.2+sha-3a308a8",
270+
"@angular/material-date-fns-adapter": "20.2.0-next.2+sha-3a308a8"
271271
},
272272
"devDependencies": {
273273
"@angular/cdk": "workspace:*",

0 commit comments

Comments
 (0)