docs: Annotation error StringUtils.repeat("", "x", 3) = "xx"; (#918)

This commit is contained in:
guicaiyue 2022-07-05 20:43:26 +08:00 committed by GitHub
parent 386f6725bd
commit f099b4a5fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6352,7 +6352,7 @@ public class StringUtils {
* StringUtils.repeat(null, "x", 2) = null
* StringUtils.repeat("", null, 0) = ""
* StringUtils.repeat("", "", 2) = ""
* StringUtils.repeat("", "x", 3) = "xxx"
* StringUtils.repeat("", "x", 3) = "xx"
* StringUtils.repeat("?", ", ", 3) = "?, ?, ?"
* </pre>
*