Make fn pub

This commit is contained in:
Matthias Beyer 2016-10-20 14:11:22 +02:00
parent 7806cf34c1
commit e4e5fafce2

View file

@ -115,7 +115,7 @@ pub mod iter {
pub struct GetIter<'a>(IntoIter<Link>, &'a Store); pub struct GetIter<'a>(IntoIter<Link>, &'a Store);
impl<'a> GetIter<'a> { impl<'a> GetIter<'a> {
fn new(i: IntoIter<Link>, store: &'a Store) -> GetIter<'a> { pub fn new(i: IntoIter<Link>, store: &'a Store) -> GetIter<'a> {
GetIter(i, store) GetIter(i, store)
} }