diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-01-03 22:42:21 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-01-03 22:42:21 -0500 |
| commit | 56dcbd17fdad5d39b7b02e22a7490d2468718d08 (patch) | |
| tree | b846c1e3a491e54feca36375f4894e5cc882528e /src/libcore/ptr.rs | |
| parent | c6c786671d692d7b13c2e5c68a53001327b4b125 (diff) | |
| download | rust-56dcbd17fdad5d39b7b02e22a7490d2468718d08.tar.gz rust-56dcbd17fdad5d39b7b02e22a7490d2468718d08.zip | |
sed -i -s 's/\bmod,/self,/g' **/*.rs
Diffstat (limited to 'src/libcore/ptr.rs')
| -rw-r--r-- | src/libcore/ptr.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index f29d7518149..9aed78d0737 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -91,11 +91,11 @@ use mem; use clone::Clone; use intrinsics; -use option::Option::{mod, Some, None}; +use option::Option::{self, Some, None}; use kinds::{Send, Sized, Sync}; use cmp::{PartialEq, Eq, Ord, PartialOrd, Equiv}; -use cmp::Ordering::{mod, Less, Equal, Greater}; +use cmp::Ordering::{self, Less, Equal, Greater}; // FIXME #19649: instrinsic docs don't render, so these have no docs :( |
