diff --git a/lib/codemod/README.md b/lib/codemod/README.md
index eb080e950f4..47844e7044e 100644
--- a/lib/codemod/README.md
+++ b/lib/codemod/README.md
@@ -133,14 +133,14 @@ for use in SB Docs.
For example:
```js
-input { Button } from './Button';
+import { Button } from './Button';
storiesOf('Button', module).add('story', () => );
```
Becomes:
```js
-input { Button } from './Button';
+import { Button } from './Button';
storiesOf('Button', module)
.addParameters({ component: Button })
.add('story', () => );