From e051f5c1723511a7413a621051e192405387190c Mon Sep 17 00:00:00 2001 From: girlbuzz <149207799+girlbuzz@users.noreply.github.com> Date: Tue, 5 Dec 2023 09:25:02 -0500 Subject: [PATCH] minor fix: fix comment that incorrectly says "google.com" instead of "rust-lang.org" (#1667) fix inaccurate comment --- examples/src/bin/simpleclient.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/src/bin/simpleclient.rs b/examples/src/bin/simpleclient.rs index e0e2d436..90441442 100644 --- a/examples/src/bin/simpleclient.rs +++ b/examples/src/bin/simpleclient.rs @@ -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.