diff --git a/packages/form-system/stories/50-Content-inside-fields.stories.mdx b/packages/form-system/stories/50-Content-inside-fields.stories.mdx
index 136aa08b8..c5cc2b02e 100644
--- a/packages/form-system/stories/50-Content-inside-fields.stories.mdx
+++ b/packages/form-system/stories/50-Content-inside-fields.stories.mdx
@@ -2,16 +2,18 @@ import { Story, Meta, html } from '@open-wc/demoing-storybook';
import '@lion/input/lion-input.js';
import '@lion/button/lion-button.js';
+
+
# Content inside fields
Due to our custom inputs being Web Components, it is possible to put HTML content inside an input.
For example if you want to add a button as a prefix or suffix.
-
+
{html`
prefix
- sufix
+ suffix
`}
@@ -19,6 +21,6 @@ For example if you want to add a button as a prefix or suffix.
```html
prefix
- sufix
+ suffix
```