From 569a225885e54bb3de806e3ad7fdaac000aacc68 Mon Sep 17 00:00:00 2001 From: Christian Jensen Date: Tue, 12 Feb 2019 08:07:09 -0700 Subject: [PATCH] docs(stepper): update non-default boolean for editable prop Previously, the docs said editable can be set to true, but that is the default, so it makes more sense to say they can be set to false to change the default behavior. --- src/cdk/stepper/stepper.md | 2 +- src/lib/stepper/stepper.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cdk/stepper/stepper.md b/src/cdk/stepper/stepper.md index 2cc43082e459..394693eef8e9 100644 --- a/src/cdk/stepper/stepper.md +++ b/src/cdk/stepper/stepper.md @@ -33,7 +33,7 @@ on `CdkStep` in a `linear` stepper. #### Editable step By default, steps are editable, which means users can return to previously completed steps and -edit their responses. `editable="true"` can be set on `CdkStep` to change the default. +edit their responses. `editable="false"` can be set on `CdkStep` to change the default. #### Completed step By default, the `completed` attribute of a step returns `true` if the step is valid (in case of diff --git a/src/lib/stepper/stepper.md b/src/lib/stepper/stepper.md index 161cab099725..5ef4793f629e 100644 --- a/src/lib/stepper/stepper.md +++ b/src/lib/stepper/stepper.md @@ -127,7 +127,7 @@ on `mat-step`. #### Editable step By default, steps are editable, which means users can return to previously completed steps and -edit their responses. `editable="true"` can be set on `mat-step` to change the default. +edit their responses. `editable="false"` can be set on `mat-step` to change the default.