소스 검색

s/recieve/receive/

Scott Mabin 5 년 전
부모
커밋
5df2afb67f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/dhcp/clientv4.rs

+ 1 - 1
src/dhcp/clientv4.rs

@@ -198,7 +198,7 @@ impl Client {
         };
         net_debug!("DHCP recv {:?} from {} ({})", dhcp_repr.message_type, src_ip, server_identifier);
 
-        // once we recieve the ack, we can pass the config to the user
+        // once we receive the ack, we can pass the config to the user
         let config = if dhcp_repr.message_type == DhcpMessageType::Ack {
                let address = dhcp_repr.subnet_mask
                    .and_then(|mask| IpAddress::Ipv4(mask).to_prefix_len())