Skip to content

Commit

Permalink
docs(stepper): add closing tags in code examples (#1415)
Browse files Browse the repository at this point in the history
  • Loading branch information
yggg authored Apr 25, 2019
1 parent 126c815 commit 1b426f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/framework/theme/components/stepper/stepper.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ export type NbStepperOrientation = 'vertical' | 'horizontal';
* <nb-stepper orientation="horizontal">
* <nb-step label="step number one">
* // ... step content here
* <nb-step>
* </nb-step>
* <nb-step label="stepLabel">
* <ng-template #stepLabel>
* <div>
* step number two
* </div>
* </ng-template>
* // ... step content here
* <nb-step>
* </nb-step>
* </nb-stepper>
* ```
*
Expand All @@ -65,7 +65,7 @@ export type NbStepperOrientation = 'vertical' | 'horizontal';
* <form [formGroup]="form">
* // ...
* </form>
* <nb-step>
* </nb-step>
* // ...
* </nb-stepper>
* ```
Expand Down

0 comments on commit 1b426f1

Please sign in to comment.