diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8064c13efc1..10fdbbb4be8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,7 @@
- Added `boolean` type to the `notification` prop of `EuiHeaderSectionItemButton` to show a simple dot ([#4008](https://github.com/elastic/eui/pull/4008))
- Added `popoverButton` and `popoverButtonBreakpoints` props to `EuiSelectableTemplateSitewide` for responsive capabilities ([#4008](https://github.com/elastic/eui/pull/4008))
- Added `isWithinMaxBreakpoint` service ([#4008](https://github.com/elastic/eui/pull/4008))
+- Added horizontal line separator to `EuiContextMenu` ([#4018](https://github.com/elastic/eui/pull/4018))
**Bug fixes**
diff --git a/src-docs/src/views/context_menu/context_menu_example.js b/src-docs/src/views/context_menu/context_menu_example.js
index 744dc0a1ca6..3426bde4315 100644
--- a/src-docs/src/views/context_menu/context_menu_example.js
+++ b/src-docs/src/views/context_menu/context_menu_example.js
@@ -8,8 +8,8 @@ import { GuideSectionTypes } from '../../components';
import {
EuiCode,
EuiContextMenu,
- EuiContextMenuPanel,
EuiContextMenuItem,
+ EuiContextMenuPanel,
} from '../../../../src/components';
import ContextMenu from './context_menu';
@@ -122,6 +122,16 @@ export const ContextMenuExample = {
width: [number of pixels] to the
panel tree.
+
+ You can add separator lines in the items prop if
+ you define an item as{' '}
+ {'{isSeparator: true}'}. This will
+ pass the rest of its fields as props to a{' '}
+
+ EuiHorizontalRule
+ {' '}
+ component.
+