Zoritle 4 년 전
부모
커밋
683db50f7e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/resolve.rs

+ 1 - 1
src/resolve.rs

@@ -160,7 +160,7 @@ fn system_nameservers() -> io::Result<(Option<String>, Vec<String>)> {
     warn!("Unable to fetch default nameservers on this platform.");
     Ok((None, Vec::new()))
 }
-// get the IP of the Network adaptor that is used to access the Internet
+// get the IP of the Network adapter that is used to access the Internet
 // https://stackoverflow.com/questions/24661022/getting-ip-adress-associated-to-real-hardware-ethernet-controller-in-windows-c
 fn get_ipv4() -> io::Result<IpAddr> {
     let s = UdpSocket::bind("0.0.0.0:0")?;