Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/compiler/msvc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ msvc_args!(static ARGS: [ArgInfo<ArgData>; _] = [
take_arg!("@", PathBuf, Concatenated, TooHardPath),
]);

// TODO: what do do with precompiled header flags? eg: /Y-, /Yc, /YI, /Yu, /Zf, /Zm
// TODO: what to do with precompiled header flags? eg: /Y-, /Yc, /YI, /Yu, /Zf, /Zm

pub fn parse_arguments(
arguments: &[OsString],
Expand Down
2 changes: 1 addition & 1 deletion src/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl SocketAddr {
#[cfg(any(target_os = "linux", target_os = "android"))]
{
if s.starts_with("\\x00") {
// Rust abstract path expects no prepand '\x00'.
// Rust abstract path expects no prepend '\x00'.
let data = crate::util::ascii_unescape_default(&s.as_bytes()[4..])?;
return Ok(SocketAddr::UnixAbstract(data));
}
Expand Down
Loading