From 3d83c6fcb2e021337da1b93d844a5781c8206da2 Mon Sep 17 00:00:00 2001 From: Melvin Kicchi Date: Fri, 10 Jul 2015 22:01:57 +0200 Subject: [PATCH] Fix typo in jOOQ example code Closes gh-3461 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index f63a371f8a..c5b5c47399 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -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; } }