Fix typo in jOOQ example code

Closes gh-3461
This commit is contained in:
Melvin Kicchi
2015-07-10 22:01:57 +02:00
committed by Phillip Webb
parent ee3de5f38a
commit 3d83c6fcb2

View File

@@ -2245,8 +2245,8 @@ application `DataSource`. To use the `DSLContext` you can just `@Autowire` it:
private final DSLContext create;
@Autowired
public JooqExample(DSLContext dlsContext) {
this.create = dlsContext;
public JooqExample(DSLContext dslContext) {
this.create = dslContext;
}
}