diff options
| author | Adrian Budau <budau.adi@gmail.com> | 2018-12-20 13:29:04 +0200 |
|---|---|---|
| committer | Adrian Budau <budau.adi@gmail.com> | 2018-12-20 13:29:04 +0200 |
| commit | da47bd3ae01f9a651b652bb141685b128c5058b0 (patch) | |
| tree | 95a74a6811f6bfa7ef86621d2a2c8049d82136a6 | |
| parent | cc53f4e9f48747d44718bb1b51e549437edae916 (diff) | |
| download | rust-da47bd3ae01f9a651b652bb141685b128c5058b0.tar.gz rust-da47bd3ae01f9a651b652bb141685b128c5058b0.zip | |
Fix typo in comment
| -rw-r--r-- | src/libstd/sys/unix/weak.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/weak.rs b/src/libstd/sys/unix/weak.rs index 3b73e3b7c50..ab75a39eecc 100644 --- a/src/libstd/sys/unix/weak.rs +++ b/src/libstd/sys/unix/weak.rs @@ -99,7 +99,7 @@ macro_rules! syscall { macro_rules! syscall { (fn $name:ident($($arg_name:ident: $t:ty),*) -> $ret:ty) => ( unsafe fn $name($($arg_name:$t),*) -> $ret { - // This like a hack, but concat_idents only accepts idents + // This looks like a hack, but concat_idents only accepts idents // (not paths). use libc::*; |
