diff --git a/difftest.ts b/difftest.ts index 1301a0b..b1f677a 100644 --- a/difftest.ts +++ b/difftest.ts @@ -2,12 +2,12 @@ // Here I'm going to change the leading whitespace before the args myFunction.doWithArgs( - arg1, - arg2.getProperty() + arg1, + arg2.getProperty() ); // Here I'm going to add a third import to see if it handles the commas right -import { foo, bar } from "library"; +import { foo, bar, baz } from "library"; // Here I will change the args -const result = doSomethingWith(ThingOne, ThingTwo); +const result = doSomethingWith(ArgOne, ArgTwo);