From 7d103154d6d675b3cd2dc426545957c77777e90c Mon Sep 17 00:00:00 2001 From: Tumao Date: Sat, 9 Oct 2021 18:11:41 +0800 Subject: [PATCH] [skip ci]Improve proxy md grammar (#9541) Signed-off-by: tumao --- docs/developer_guides/chap05_proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer_guides/chap05_proxy.md b/docs/developer_guides/chap05_proxy.md index 46f4ec5a6f..ce68f26b79 100644 --- a/docs/developer_guides/chap05_proxy.md +++ b/docs/developer_guides/chap05_proxy.md @@ -488,7 +488,7 @@ type baseTaskQueue struct { } ``` -_AddUnissuedTask(task \*task)_ will put a new task into _unissuedTasks_, while maintaining the list by timestamp order. +_AddUnissuedTask(task \*task)_ will push a new task into _unissuedTasks_, while maintaining the list by timestamp order. _TaskDoneTest(ts Timestamp)_ will check both _unissuedTasks_ and _unissuedTasks_. If no task found before _ts_, then the function returns _true_, indicates that all the tasks before _ts_ are completed.