修复几处javadoc问题;

This commit is contained in:
emptypoint 2022-12-11 13:14:01 +08:00
parent 0c4d4ddbe8
commit 1e40dec0ac
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ public class StrFormatter {
* 如果想输出 {} 使用 \\转义 { 即可如果想输出 {} 之前的 \ 使用双转义符 \\\\ 即可<br>
* <br>
* 通常使用format("this is {} for {}", "a", "b") = this is a for b<br>
* 转义{} format("this is \\{} for {}", "a", "b") = this is \{} for a<br>
* 转义{} format("this is \\{} for {}", "a", "b") = this is {} for a<br>
* 转义\ format("this is \\\\{} for {}", "a", "b") = this is \a for b<br>
*
* @param strPattern 字符串模板