Skip to content

Commit d46857d

Browse files
vicheeyjustinmk3
andauthored
Apply suggestions from code review
Co-authored-by: Justin M. Keyes <[email protected]>
1 parent 0ab3475 commit d46857d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/arch_develop.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -484,17 +484,17 @@ class ExampleWizard extends Wizard<ExampleState> {
484484

485485
### 2. `CompositeWizard` Class
486486

487-
This abstract class extends the `Wizard` class with an addition method to create and manage state of the nested wizards.
487+
`CompositeWizard` extends `Wizard` to create and manage a collection of nested/child wizards.
488488

489-
Extends this class to create a wizard that contains other wizards as part of the prompter flow.
490-
Use `this.createWizardPrompter()` to use another wizard class as a prompter in the main wizard.
489+
Extend this class to create a wizard that contains other wizards as part of a prompter flow.
490+
Use `this.createWizardPrompter()` to use a wizard as a prompter in the `CompositeWizard`.
491491

492492
Example:
493493

494494
```ts
495495

496496
// Child wizard
497-
class ChildWizard extends Wizards<ChildWizardForm> {...}
497+
class ChildWizard extends Wizard<ChildWizardForm> {...}
498498

499499

500500
// Composite wizard

0 commit comments

Comments
 (0)