diff --git a/snippets/MappedList.md b/snippets/MappedList.md
index 17b9bba5f..b3b1c9c2a 100644
--- a/snippets/MappedList.md
+++ b/snippets/MappedList.md
@@ -8,7 +8,7 @@ Use `Array.prototype.map` to render every item in `data` as a `
` element and
Omit the `isOrderedList` prop to render a `` list by default.
```jsx
-function MappedList({ isOrderedList, data}) {
+function MappedList({ isOrderedList, data }) {
const list = data.map((v, i) => (
- {v.value ? v.value : v}
));