Skip to content

Commit 20d5e16

Browse files
authored
Fix minor issues in the README
1 parent cc2be64 commit 20d5e16

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ To use this project, you will need to include the 'core' package as part of your
2323
public class ExampleApp {
2424
2525
@Autowired
26-
private OrderInterface orderInterface
26+
private IOrderInterface orderInterface
2727
2828
public static void main(final String[] args) {
2929
SpringApplication.run(ExampleApp.class, args);
30-
System.out.println(this.getOrders());
30+
System.out.println(this.orderInterface.getOrders());
3131
}
3232
3333
}

0 commit comments

Comments
 (0)