diff --git a/hutool-core/src/main/java/cn/hutool/core/collection/CollUtil.java b/hutool-core/src/main/java/cn/hutool/core/collection/CollUtil.java
index 37b70e4ff..cefedc5f4 100755
--- a/hutool-core/src/main/java/cn/hutool/core/collection/CollUtil.java
+++ b/hutool-core/src/main/java/cn/hutool/core/collection/CollUtil.java
@@ -2078,13 +2078,13 @@ public class CollUtil {
/**
* 一个对象不为空且不存在于该集合中时,加入到该集合中
*
- * null, null => false
- * [], null => false
- * null, "123" => false
- * ["123"], "123" => false
- * [], "123" => true
- * ["456"], "123" => true
- * [Animal{"name": "jack"}], Dog{"name": "jack"} => true
+ * null, null -> false
+ * [], null -> false
+ * null, "123" -> false
+ * ["123"], "123" -> false
+ * [], "123" -> true
+ * ["456"], "123" -> true
+ * [Animal{"name": "jack"}], Dog{"name": "jack"} -> true
*
* @param collection 被加入的集合
* @param object 要添加到集合的对象