Commit 3d83c6fc authored by Melvin Kicchi's avatar Melvin Kicchi Committed by Phillip Webb

Fix typo in jOOQ example code

Closes gh-3461
parent ee3de5f3
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment