Skip to content

Commit dcd034b

Browse files
committed
fix doc
1 parent a53bba3 commit dcd034b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

bin/push.sh

-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,5 @@
33
# Push to origin
44
git push origin master
55

6-
# Push to Github
7-
git push github master
8-
96
# Push to Gitee
107
git push osc master

docs/cache/TimedCache.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ timedCache.put("key1", "value1", 1);//1毫秒过期
1313
timedCache.put("key2", "value2", DateUnit.SECOND.getMillis() * 5);
1414
timedCache.put("key3", "value3");//默认过期(4毫秒)
1515

16-
//启动定时任务,每5毫秒秒检查一次过期
16+
//启动定时任务,每5毫秒清理一次过期条目,注释此行首次启动仍会清理过期条目
1717
timedCache.schedulePrune(5);
1818

1919
//等待5毫秒

0 commit comments

Comments
 (0)