diff --git a/packages/terra-core-docs/CHANGELOG.md b/packages/terra-core-docs/CHANGELOG.md
index c36572afb41..83fdbd05272 100644
--- a/packages/terra-core-docs/CHANGELOG.md
+++ b/packages/terra-core-docs/CHANGELOG.md
@@ -4,6 +4,8 @@
* Added
* Added an example for `terra-hyperlink` to demonstrate text ellipses when its content should overflow.
+* Changed
+ * Fixed typos and imports in `terra-list` docs.
## 1.68.0 - (March 20, 2024)
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/About.1.doc.mdx b/packages/terra-core-docs/src/terra-dev-site/doc/list/About.1.doc.mdx
index 5cfdda845a7..5d65de9f0be 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/About.1.doc.mdx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/About.1.doc.mdx
@@ -18,9 +18,10 @@ import ListPropsTable from 'terra-list/lib/List?dev-site-props-table';
The Terra List is a structural component to vertically arrange content within list/list items.
-If a list implementation contains selectable list options the role prop should be set to "listbox" for accesibility.
+If a list implementation contains selectable list options the role prop should be set to "listbox" for accessibility.
-Two padding variants are provide for list item content, standard and compact. If different padding is desired use the defaulted style of 'none' and set the padding on the list item's child content with your own css values, preferrably themeable variables.
+Two padding variants are provided for list item content, standard and compact.
+If different padding is desired, use the default style of 'none' and set the padding on the list item's child content with the custom css values, preferrably themeable variables.
## Getting Started
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListItem.2.doc.mdx b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListItem.2.doc.mdx
index 6585a7d5d8f..fa3608a8a33 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListItem.2.doc.mdx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListItem.2.doc.mdx
@@ -10,12 +10,15 @@ import ListItemPropsTable from 'terra-list/lib/ListItem?dev-site-props-table';
# List Item
-The list item provides a pattern for selection/selectability for li surrounded child content. Whenever, the list item has a prop `isSelectable=true` then `aria-label` must be provided to List for accessibility. The onSelect event is the primary means for interaction, as it yields the associated metaData when valid selection occurs, though individual onClick and onKeyDown events can be applied through the use of customProps if greater granularity is required.
+The list item provides a pattern for selection/selectability for `
`-encapsulated child content.
+When the list item has `isSelectable=true`, then `aria-label` must be provided to List for accessibility.
+The onSelect event is the primary means for interaction, as it yields the associated metaData when valid selection occurs,
+though individual onClick and onKeyDown events can be applied through the use of customProps if greater granularity is required.
## Usage
```jsx
-import List, { Item } from 'terra-list/lib/List';
+import List, { Item } from 'terra-list';
```
## Examples
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSection.3.doc.mdx b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSection.3.doc.mdx
index 6c7074b082a..696aaf70f82 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSection.3.doc.mdx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSection.3.doc.mdx
@@ -13,7 +13,7 @@ The list section component creates a section header and layouts it out with the
## Usage
```jsx
-import List, { Item, Section } from 'terra-list/lib/List';
+import List, { Item, Section } from 'terra-list';
```
## Examples
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSectionHeader.5.doc.mdx b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSectionHeader.5.doc.mdx
index 2287938cf09..e05583939dc 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSectionHeader.5.doc.mdx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSectionHeader.5.doc.mdx
@@ -15,7 +15,7 @@ When consumed by itself as an individual list item avoid enabling the collapsibl
## Usage
```jsx
-import List, { SectionHeader } from 'terra-list/lib/List';
+import List, { SectionHeader } from 'terra-list';
```
## Examples
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSubsection.4.doc.mdx b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSubsection.4.doc.mdx
index 21f25887dd4..e6cda703292 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSubsection.4.doc.mdx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSubsection.4.doc.mdx
@@ -13,7 +13,7 @@ The list subsection component creates a subsection header and layouts it out wit
## Usage
```jsx
-import List, { Item, Subsection } from 'terra-list/lib/List';\
+import List, { Item, Subsection } from 'terra-list';
```
## Examples
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSubsectionHeader.6.doc.mdx b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSubsectionHeader.6.doc.mdx
index d6b9451a5b4..4ebd90e397c 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSubsectionHeader.6.doc.mdx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/ListSubsectionHeader.6.doc.mdx
@@ -15,7 +15,7 @@ When consumed by itself as an individual list item avoid enabling the collapsibl
## Usage
```jsx
-import List, { SubsectionHeader } from 'terra-list/lib/List';
+import List, { SubsectionHeader } from 'terra-list';
```
## Examples
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescribedByHiddenList.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescribedByHiddenList.jsx
index 0d21b6e0852..eabe17630f0 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescribedByHiddenList.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescribedByHiddenList.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import VisuallyHiddenText from 'terra-visually-hidden-text';
import classNames from 'classnames/bind';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescribedByVisibleList.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescribedByVisibleList.jsx
index ab0e87e4e00..f0394f8ab83 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescribedByVisibleList.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescribedByVisibleList.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescriptionList.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescriptionList.jsx
index 3fe47d8c7e6..04a7372a21d 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescriptionList.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDescriptionList.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDetailsList.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDetailsList.jsx
index 02cd14a06ba..5ed1a68de9a 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDetailsList.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/AriaDetailsList.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/DraggableListItem.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/DraggableListItem.jsx
index 7a3402cf58f..e11b18256bf 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/DraggableListItem.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/DraggableListItem.jsx
@@ -1,5 +1,5 @@
import React, { useRef, useState } from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/DraggableListItemWithInteractiveElements.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/DraggableListItemWithInteractiveElements.jsx
index e868b0f0a1c..6af10adb7f0 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/DraggableListItemWithInteractiveElements.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/DraggableListItemWithInteractiveElements.jsx
@@ -1,5 +1,5 @@
import React, { useState } from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import classNames from 'classnames/bind';
import Checkbox from 'terra-form-checkbox';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/List.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/List.jsx
index 38d71450683..3ed07740555 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/List.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/List.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListDivided.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListDivided.jsx
index f54f9373db4..d0bd911c63e 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListDivided.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListDivided.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListItem.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListItem.jsx
index 08a406adcce..9d265282d1a 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListItem.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListItem.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListPadded.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListPadded.jsx
index ccd501ece8f..3447310ba31 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListPadded.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListPadded.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSection.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSection.jsx
index efb0332849d..55ce23c4893 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSection.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSection.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item, Section } from 'terra-list/lib/index';
+import List, { Item, Section } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSectionHeader.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSectionHeader.jsx
index d24d91e88d8..dbee987e0b4 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSectionHeader.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSectionHeader.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { SectionHeader } from 'terra-list/lib/index';
+import List, { SectionHeader } from 'terra-list';
const ListSectionHeaderExample = () => (
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSubsection.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSubsection.jsx
index 088b9a09c0c..a8edcd2d650 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSubsection.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSubsection.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item, Subsection } from 'terra-list/lib/index';
+import List, { Item, Subsection } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSubsectionHeader.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSubsectionHeader.jsx
index e363ca12f26..5c08959017c 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSubsectionHeader.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/example/ListSubsectionHeader.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { SubsectionHeader } from 'terra-list/lib/index';
+import List, { SubsectionHeader } from 'terra-list';
const ListSubsectionHeaderExample = () => (
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/guides/MultiSelectList.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/guides/MultiSelectList.jsx
index f9fcf800dd4..db928547657 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/guides/MultiSelectList.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/guides/MultiSelectList.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item, Utils } from 'terra-list/lib/index';
+import List, { Item, Utils } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import mockData from './mock-data/mock-select';
diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/list/guides/SingleSelectList.jsx b/packages/terra-core-docs/src/terra-dev-site/doc/list/guides/SingleSelectList.jsx
index 92733e4c2a7..47b934a4ed4 100644
--- a/packages/terra-core-docs/src/terra-dev-site/doc/list/guides/SingleSelectList.jsx
+++ b/packages/terra-core-docs/src/terra-dev-site/doc/list/guides/SingleSelectList.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import List, { Item } from 'terra-list/lib/index';
+import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import mockData from './mock-data/mock-select';
@@ -58,7 +58,8 @@ class SingleSelectList extends React.Component {
Note
{' '}
- Tab key Navigation is disabled for below list items. Inorder to interact with list-item user should set programmatic focus to one of the list item depending on the required scenario.
+ Tab key navigation is disabled for the below list items.
+ In scenarios where tab key navigation is disabled, consumers should enable interaction by setting programmatic focus to one of the list items.
{' '}