Skip to content

Commit 4ad1c1a

Browse files
committed
chore: correct module imports
Signed-off-by: Akshat Patel <akshat@live.ca>
1 parent 209eccc commit 4ad1c1a

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

src/content-switcher/content-switcher.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import { isFocusInLastItem, isFocusInFirstItem } from "carbon-components-angular
2727
* <button cdsContentOption>First section</button>
2828
* <button cdsContentOption>Second section</button>
2929
* <button cdsContentOption>Third section</button>
30-
* </cds-content-switcher>
31-
* ```
30+
* </cds-content-switcher>
31+
* ```
3232
*
3333
* [See demo](../../?path=/story/components-content-switcher--basic)
3434
*/

src/datepicker/datepicker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if (languages.default?.default["en"]?.weekdays) {
4545
* Get started with importing the module:
4646
*
4747
* ```typescript
48-
* import { ContentSwitcherModule } from 'carbon-components-angular';
48+
* import { DatePickerModule } from 'carbon-components-angular';
4949
* ```
5050
*
5151
* [See demo](../../?path=/story/components-date-picker--single)

src/notification/base-notification.component.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ import { NotificationDisplayService } from "./notification-display.service";
1313
/**
1414
* Base class for `Notification`, `ActionableNotification`, & `Toast`
1515
* consisting of common functionality
16+
*
17+
* Get started with importing the module:
18+
*
19+
* ```typescript
20+
* import { NotificationModule } from 'carbon-components-angular';
21+
* ```
22+
*
23+
* [See demo](../../?path=/story/components-notification--inline-notification)
1624
*/
1725
@Component({
1826
template: ""

src/progress-bar/progress-bar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
* Get started with importing the module:
1010
*
1111
* ```typescript
12-
* import { progressBarModule } from 'carbon-components-angular';
12+
* import { ProgressBarModule } from 'carbon-components-angular';
1313
* ```
1414
*
1515
* [See demo](../../?path=/story/components-progress-bar--basic)

src/structured-list/structured-list.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { NG_VALUE_ACCESSOR, ControlValueAccessor } from "@angular/forms";
1919
* Get started with importing the module:
2020
*
2121
* ```typescript
22-
* import { SkeletonModule } from 'carbon-components-angular';
22+
* import { StructuredListModule } from 'carbon-components-angular';
2323
* ```
2424
*
2525
* ```html

0 commit comments

Comments
 (0)