@@ -566,13 +566,13 @@ impl<T> Vec<T> {
566566 ///
567567 /// # Examples
568568 ///
569+ // FIXME Update this when vec_into_raw_parts is stabilized
569570 /// ```
570571 /// use std::ptr;
571572 /// use std::mem;
572573 ///
573574 /// let v = vec![1, 2, 3];
574575 ///
575- // FIXME Update this when vec_into_raw_parts is stabilized
576576 /// // Prevent running `v`'s destructor so we are in complete control
577577 /// // of the allocation.
578578 /// let mut v = mem::ManuallyDrop::new(v);
@@ -674,6 +674,7 @@ impl<T> Vec<T> {
674674 ///
675675 /// # Examples
676676 ///
677+ // FIXME Update this when vec_into_raw_parts is stabilized
677678 /// ```
678679 /// #![feature(box_vec_non_null)]
679680 ///
@@ -682,7 +683,6 @@ impl<T> Vec<T> {
682683 ///
683684 /// let v = vec![1, 2, 3];
684685 ///
685- // FIXME Update this when vec_into_raw_parts is stabilized
686686 /// // Prevent running `v`'s destructor so we are in complete control
687687 /// // of the allocation.
688688 /// let mut v = mem::ManuallyDrop::new(v);
@@ -994,6 +994,7 @@ impl<T, A: Allocator> Vec<T, A> {
994994 ///
995995 /// # Examples
996996 ///
997+ // FIXME Update this when vec_into_raw_parts is stabilized
997998 /// ```
998999 /// #![feature(allocator_api)]
9991000 ///
@@ -1007,7 +1008,6 @@ impl<T, A: Allocator> Vec<T, A> {
10071008 /// v.push(2);
10081009 /// v.push(3);
10091010 ///
1010- // FIXME Update this when vec_into_raw_parts is stabilized
10111011 /// // Prevent running `v`'s destructor so we are in complete control
10121012 /// // of the allocation.
10131013 /// let mut v = mem::ManuallyDrop::new(v);
@@ -1114,6 +1114,7 @@ impl<T, A: Allocator> Vec<T, A> {
11141114 ///
11151115 /// # Examples
11161116 ///
1117+ // FIXME Update this when vec_into_raw_parts is stabilized
11171118 /// ```
11181119 /// #![feature(allocator_api, box_vec_non_null)]
11191120 ///
@@ -1127,7 +1128,6 @@ impl<T, A: Allocator> Vec<T, A> {
11271128 /// v.push(2);
11281129 /// v.push(3);
11291130 ///
1130- // FIXME Update this when vec_into_raw_parts is stabilized
11311131 /// // Prevent running `v`'s destructor so we are in complete control
11321132 /// // of the allocation.
11331133 /// let mut v = mem::ManuallyDrop::new(v);
0 commit comments