From 2f6b256f011b9ef59e28c40942fabc5eb7ddbced Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Wed, 9 Oct 2024 10:50:45 +0200 Subject: [PATCH] docs: Link to Read and Write traits from Upgraded doc comment --- src/upgrade.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/upgrade.rs b/src/upgrade.rs index 03d7e98ddc..9d23a29081 100644 --- a/src/upgrade.rs +++ b/src/upgrade.rs @@ -58,7 +58,7 @@ use crate::common::io::Rewind; /// /// This type holds a trait object internally of the original IO that /// was used to speak HTTP before the upgrade. It can be used directly -/// as a `Read` or `Write` for convenience. +/// as a [`Read`] or [`Write`] for convenience. /// /// Alternatively, if the exact type is known, this can be deconstructed /// into its parts.