Skip to content

Commit 3e76ca7

Browse files
authored
Fix Typo (#310)
Motiviation: The `MysqlConnectionConfiguration#toString` has a typo: `tinyint1isBit`. Modifications: Corrected the typo to `tinyInt1isBit`. Result: Fixed.
1 parent d67bf11 commit 3e76ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ private String buildCommonToStringPart() {
418418
", passwordPublisher=" + passwordPublisher +
419419
", resolver=" + resolver +
420420
", metrics=" + metrics +
421-
", tinyint1isBit=" + tinyInt1isBit;
421+
", tinyInt1isBit=" + tinyInt1isBit;
422422
}
423423

424424
/**

0 commit comments

Comments
 (0)