diff --git a/docs/docs/jsx-in-depth.md b/docs/docs/jsx-in-depth.md
index e08004d19f2f5..9cdd899cfda71 100644
--- a/docs/docs/jsx-in-depth.md
+++ b/docs/docs/jsx-in-depth.md
@@ -348,14 +348,6 @@ function Hello(props) {
Normally, JavaScript expressions inserted in JSX will evaluate to a string, a React element, or a list of those things. However, `props.children` works just like any other prop in that it can pass any sort of data, not just the sorts that React knows how to render. For example, if you have a custom component, you could have it take a callback as `props.children`:
```js{4,13}
-function ListOfTenThings() {
- return (
-