Skip to content

Commit 10f2918

Browse files
committed
Grammar
1 parent 02a702c commit 10f2918

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dnscrypt-proxy/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ func ConfigLoad(proxy *Proxy, flags *ConfigFlags) error {
465465
return err
466466
}
467467
if len(proxy.registeredServers) == 0 {
468-
return errors.New("None of the servers listed in the server_names list was found in the configured sources.")
468+
return errors.New("None of the servers listed in the server_names list were found in the configured sources.")
469469
}
470470
}
471471

dnscrypt-proxy/example-dnscrypt-proxy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ fragments_blocked = [
851851

852852
[doh_client_x509_auth]
853853

854-
## Use a X509 certificate to authenticate yourself when connecting to DoH servers.
854+
## Use an X509 certificate to authenticate yourself when connecting to DoH servers.
855855
## This is only useful if you are operating your own, private DoH server(s).
856856
## 'creds' maps servers to certificates, and supports multiple entries.
857857
## If you are not using the standard root CA, an optional "root_ca"

dnscrypt-proxy/netprobe_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func NetProbe(proxy *Proxy, address string, timeout int) error {
3333
if err == nil {
3434
// Write at least 1 byte. This ensures that sockets are ready to use for writing.
3535
// Windows specific: during the system startup, sockets can be created but the underlying buffers may not be
36-
// setup yet. If this is the case Write fails with WSAENOBUFS: "An operation on a socket could not be
36+
// set up yet. If this is the case Write fails with WSAENOBUFS: "An operation on a socket could not be
3737
// performed because the system lacked sufficient buffer space or because a queue was full"
3838
_, err = pc.Write([]byte{0})
3939
}

0 commit comments

Comments
 (0)