diff --git a/llvm/include/llvm/ADT/simple_ilist.h b/llvm/include/llvm/ADT/simple_ilist.h --- a/llvm/include/llvm/ADT/simple_ilist.h +++ b/llvm/include/llvm/ADT/simple_ilist.h @@ -28,8 +28,8 @@ /// This is a simple intrusive list for a \c T that inherits from \c /// ilist_node. The list never takes ownership of anything inserted in it. /// -/// Unlike \a iplist and \a ilist, \a simple_ilist never allocates or -/// deletes values, and has no callback traits. +/// Unlike \a iplist and \a ilist, \a simple_ilist never deletes +/// values, and has no callback traits. /// /// The API for adding nodes include \a push_front(), \a push_back(), and \a /// insert(). These all take values by reference (not by pointer), except for