minor fix: fix comment that incorrectly says "google.com" instead of "rust-lang.org" (#1667)

fix inaccurate comment
This commit is contained in:
girlbuzz 2023-12-05 09:25:02 -05:00 committed by GitHub
parent 6845c013cb
commit e051f5c172
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
//! This is the simplest possible client using rustls that does something useful:
//! it accepts the default configuration, loads some root certs, and then connects
//! to google.com and issues a basic HTTP request. The response is printed to stdout.
//! to rust-lang.org and issues a basic HTTP request. The response is printed to stdout.
//!
//! It makes use of rustls::Stream to treat the underlying TLS connection as a basic
//! bi-directional stream -- the underlying IO is performed transparently.