diff --git a/src-docs/src/views/flex/flex_justify.js b/src-docs/src/views/flex/flex_justify.js
index c047444e9b..0f306e6645 100644
--- a/src-docs/src/views/flex/flex_justify.js
+++ b/src-docs/src/views/flex/flex_justify.js
@@ -15,6 +15,6 @@ import { OuiFlexGroup, OuiFlexItem } from '../../../../src/components';
export default () => (
- I’m a single centered item!
+ I’m a centered item
);
diff --git a/src-docs/src/views/flex/flex_justify_between.js b/src-docs/src/views/flex/flex_justify_between.js
index 68367ce7ee..3d38ab3fcb 100644
--- a/src-docs/src/views/flex/flex_justify_between.js
+++ b/src-docs/src/views/flex/flex_justify_between.js
@@ -15,7 +15,7 @@ import { OuiFlexGroup, OuiFlexItem } from '../../../../src/components';
export default () => (
- One here on the left.
- The other over here on the right.
+ One here on the left
+ The other over here on the right
);
diff --git a/src-docs/src/views/flex/flex_justify_evenly.js b/src-docs/src/views/flex/flex_justify_evenly.js
index f1dc383d5d..18c8fa142e 100644
--- a/src-docs/src/views/flex/flex_justify_evenly.js
+++ b/src-docs/src/views/flex/flex_justify_evenly.js
@@ -15,7 +15,7 @@ import { OuiFlexGroup, OuiFlexItem } from '../../../../src/components';
export default () => (
- Spaced evenly between this one.
- And this one here on the right.
+ Spaced evenly between this one
+ And this one here on the right
);