diff --git a/ebean-api/src/main/java/io/ebean/Database.java b/ebean-api/src/main/java/io/ebean/Database.java index 5c3ca8265..6bd7ebe2b 100644 --- a/ebean-api/src/main/java/io/ebean/Database.java +++ b/ebean-api/src/main/java/io/ebean/Database.java @@ -88,16 +88,16 @@ public interface Database { /** * Return a new database builder. - *
{@code
- *
- * // build the 'default' database using configuration
- * // from application.properties / application.yaml
- *
- * Database db = Database.builder()
- * .loadFromProperties()
- * .build();
- *
- * }
+ * {@code
+ *
+ * // build the 'default' database using configuration
+ * // from application.properties / application.yaml
+ *
+ * Database db = Database.builder()
+ * .loadFromProperties()
+ * .build();
+ *
+ * }
*/
static DatabaseBuilder builder() {
return new DatabaseConfig();