Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some comments #2385

Merged
merged 2 commits into from
Aug 13, 2024
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/blocking/body.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ async fn send_future(sender: Sender) -> Result<(), crate::Error> {
//
// We need to know whether there is any data to send before
// we check the transmission channel (with poll_ready below)
// because somestimes the receiver disappears as soon as is
// because sometimes the receiver disappears as soon as is
// considers the data is completely transmitted, which may
// be true.
//
Expand Down
2 changes: 1 addition & 1 deletion src/dns/hickory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl Iterator for SocketAddrs {

/// Create a new resolver with the default configuration,
/// which reads from `/etc/resolve.conf`. The options are
/// overriden to look up for both IPv4 and IPv6 addresses
/// overridden to look up for both IPv4 and IPv6 addresses
/// to work with "happy eyeballs" algorithm.
fn new_resolver() -> io::Result<TokioAsyncResolver> {
let (config, mut opts) = system_conf::read_system_conf().map_err(|e| {
Expand Down