sed -i -s 's/\bmod,/self,/g' **/*.rs

This commit is contained in:
Jorge Aparicio
2015-01-03 22:42:21 -05:00
parent c6c786671d
commit 56dcbd17fd
178 changed files with 291 additions and 291 deletions

View File

@@ -45,8 +45,8 @@ pub use iter::{Extend, IteratorExt};
pub use iter::{Iterator, DoubleEndedIterator};
pub use iter::{IteratorCloneExt, CloneIteratorExt};
pub use iter::{IteratorOrdExt, ExactSizeIterator};
pub use option::Option::{mod, Some, None};
pub use option::Option::{self, Some, None};
pub use ptr::{PtrExt, MutPtrExt};
pub use result::Result::{mod, Ok, Err};
pub use result::Result::{self, Ok, Err};
pub use slice::{AsSlice, SliceExt};
pub use str::{Str, StrExt};