+2012-03-23 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * include/bits/forward_list.h: Slightly tweak two comments.
+
2012-03-22 Benjamin Kosnik <bkoz@redhat.com>
* doc/Makefile.am: XML output names have only .xml suffix.
* @param __al An allocator object.
*
* Create a %forward_list consisting of copies of the elements
- * in the initializer_list @a __il. This is linear in the number
- * of elements of __il.
+ * in the initializer_list @a __il. This is linear in __il.size().
*/
forward_list(std::initializer_list<_Tp> __il,
const _Alloc& __al = _Alloc())
*
* Replace the contents of the %forward_list with copies of the
* elements in the initializer_list @a __il. This is linear in
- * the number of elements of __il.
+ * __il.size().
*/
forward_list&
operator=(std::initializer_list<_Tp> __il)