docs: replace Prepends with Appends (#882)

This commit is contained in:
wangcong
2019-02-04 09:46:02 -05:00
committed by Toby Lawrence
parent 9d6d142bed
commit 61d4aa98e4
+1 -1
View File
@@ -559,7 +559,7 @@ impl<U> List<U> {
}
}
/// 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<Node<U>>) -> *const Node<U> {
let ptr = arc2ptr(node);