Skip to content

Commit 1a4a3cc

Browse files
Merge pull request #109 from coderaiser/patch-1
2 parents 5601495 + 2a47987 commit 1a4a3cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/docs/guides/when-not-to-codemod.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ You now have to expand your transform to not only look for `Identifiers` with th
153153
What if we could side-step that entire part of the transform and simply alias the import instead?
154154

155155
```diff
156-
+import { Foo, Bar as Baz } from 'my-module';
156+
+import { Foo, Baz as Bar } from 'my-module';
157157
-import { Foo, Bar } from 'my-module';
158158

159159
console.log(Bar);

0 commit comments

Comments
 (0)