diff --git a/value/userguide/autobuilder.md b/value/userguide/autobuilder.md index 1329efe9b6..9de222f7a0 100644 --- a/value/userguide/autobuilder.md +++ b/value/userguide/autobuilder.md @@ -548,7 +548,7 @@ Introducing a static method fixes the problem: import java.time.LocalTime; public class TimeUtils { - static LocalTime localTimeOf(int hour, int second, int second) { + static LocalTime localTimeOf(int hour, int minute, int second) { return LocalTime.of(hour, minute, second); }