From 653cf03deed4ff2d5e723ce3916d9c4769e3f1df Mon Sep 17 00:00:00 2001 From: Martin Algesten Date: Sun, 24 Apr 2022 19:39:23 +0200 Subject: [PATCH] Fix and and Close #503 --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0f8f5d0..5d97d5d 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ HTTPS, and charset decoding. Ureq is in pure Rust for safety and ease of understanding. It avoids using `unsafe` directly. It [uses blocking I/O][blocking] instead of async I/O, because that keeps -the API simple and and keeps dependencies to a minimum. For TLS, ureq uses +the API simple and keeps dependencies to a minimum. For TLS, ureq uses [rustls or native-tls](#https--tls--ssl). Version 2.0.0 was released recently and changed some APIs. See the [changelog] for details. diff --git a/src/lib.rs b/src/lib.rs index 218fcec..69ee72f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ //! //! Ureq is in pure Rust for safety and ease of understanding. It avoids using //! `unsafe` directly. It [uses blocking I/O][blocking] instead of async I/O, because that keeps -//! the API simple and and keeps dependencies to a minimum. For TLS, ureq uses +//! the API simple and keeps dependencies to a minimum. For TLS, ureq uses //! [rustls or native-tls](#https--tls--ssl). //! //! Version 2.0.0 was released recently and changed some APIs. See the [changelog] for details.