From 9c587b7630c4fee489341ef2b4bcbf89f72b4fe9 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Mon, 7 Jun 2021 16:11:53 -0700 Subject: [PATCH] Fix up relative links The standard syntax doesn't work: https://github.com/rust-lang/rust/issues/86120 --- aws/rust-runtime/aws-hyper/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aws/rust-runtime/aws-hyper/src/lib.rs b/aws/rust-runtime/aws-hyper/src/lib.rs index 4c75bd285e..663edaf071 100644 --- a/aws/rust-runtime/aws-hyper/src/lib.rs +++ b/aws/rust-runtime/aws-hyper/src/lib.rs @@ -49,8 +49,8 @@ impl tower::Layer for AwsMiddleware { /// AWS Service Client /// /// Hyper-based AWS Service Client. Most customers will want to construct a client with -/// [`Client::https()`](Client::https). For testing & other more advanced use cases, a custom -/// connector may be used via [`Client::new(connector)`](Client::new). +/// [`Client::https`](smithy_client::Client::https). For testing & other more advanced use cases, a +/// custom connector may be used via [`Client::new(connector)`](smithy_client::Client::new). /// /// The internal connector must implement the following trait bound to be used to dispatch requests: /// ```rust,ignore