浏览代码

!83 注释修改
Merge pull request !83 from zz/v5-dev

Looly 6 年之前
父节点
当前提交
827e2a8dc4
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      hutool-core/src/main/java/cn/hutool/core/lang/Assert.java

+ 4 - 4
hutool-core/src/main/java/cn/hutool/core/lang/Assert.java

@@ -23,7 +23,7 @@ public class Assert {
 	 * Assert.isTrue(i > 0, "The value must be greater than zero");
 	 * </pre>
 	 * 
-	 * @param expression 尔值
+	 * @param expression 尔值
 	 * @param errorMsgTemplate 错误抛出异常附带的消息模板,变量用{}代替
 	 * @param params 参数列表
 	 * @throws IllegalArgumentException if expression is {@code false}
@@ -41,7 +41,7 @@ public class Assert {
 	 * Assert.isTrue(i &gt; 0, "The value must be greater than zero");
 	 * </pre>
 	 * 
-	 * @param expression 尔值
+	 * @param expression 尔值
 	 * @throws IllegalArgumentException if expression is {@code false}
 	 */
 	public static void isTrue(boolean expression) throws IllegalArgumentException {
@@ -55,7 +55,7 @@ public class Assert {
 	 * Assert.isFalse(i &lt; 0, "The value must be greater than zero");
 	 * </pre>
 	 * 
-	 * @param expression 尔值
+	 * @param expression 尔值
 	 * @param errorMsgTemplate 错误抛出异常附带的消息模板,变量用{}代替
 	 * @param params 参数列表
 	 * @throws IllegalArgumentException if expression is {@code false}
@@ -73,7 +73,7 @@ public class Assert {
 	 * Assert.isFalse(i &lt; 0);
 	 * </pre>
 	 * 
-	 * @param expression 尔值
+	 * @param expression 尔值
 	 * @throws IllegalArgumentException if expression is {@code false}
 	 */
 	public static void isFalse(boolean expression) throws IllegalArgumentException {