Skip to content

Commit 0d337ea

Browse files
committed
FIX: Make OwnedRcRepr pub
jturner314 found that I had forgotten this.
1 parent edf7d0b commit 0d337ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ pub struct OwnedRepr<A>(Vec<A>);
744744
/// *Don’t use this type directly—use the type alias
745745
/// [`RcArray`](type.RcArray.html) for the array type!*
746746
#[deprecated(note="RcArray is replaced by ArcArray")]
747-
use self::OwnedArcRepr as OwnedRcRepr;
747+
pub use self::OwnedArcRepr as OwnedRcRepr;
748748

749749
/// ArcArray's representation.
750750
///

0 commit comments

Comments
 (0)