From 61d4aa98e48b8a2d9cc0390d81093c542518192e Mon Sep 17 00:00:00 2001 From: wangcong Date: Mon, 4 Feb 2019 22:46:02 +0800 Subject: [PATCH] docs: replace `Prepends` with `Appends` (#882) --- tokio-current-thread/src/scheduler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-current-thread/src/scheduler.rs b/tokio-current-thread/src/scheduler.rs index f7a8f3b3b..eac30d178 100644 --- a/tokio-current-thread/src/scheduler.rs +++ b/tokio-current-thread/src/scheduler.rs @@ -559,7 +559,7 @@ impl List { } } - /// Prepends an element to the back of the list + /// Appends an element to the back of the list fn push_back(&mut self, node: Arc>) -> *const Node { let ptr = arc2ptr(node);