oldk1331 created this revision.
Herald added a subscriber: cfe-commits.

Hello all,

This is a simple (and my first) patch that fixes a comment
in include/list.

Qian Yun


Repository:
  rCXX libc++

https://reviews.llvm.org/D42359

Files:
  include/list


Index: include/list
===================================================================
--- include/list
+++ include/list
@@ -1130,7 +1130,7 @@
     base::__end_.__next_ = __f;
 }
 
-// Link in nodes [__f, __l] at the front of the list
+// Link in nodes [__f, __l] at the back of the list
 template <class _Tp, class _Alloc>
 inline
 void


Index: include/list
===================================================================
--- include/list
+++ include/list
@@ -1130,7 +1130,7 @@
     base::__end_.__next_ = __f;
 }
 
-// Link in nodes [__f, __l] at the front of the list
+// Link in nodes [__f, __l] at the back of the list
 template <class _Tp, class _Alloc>
 inline
 void
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to