From 4c4de90a7e2aa0629b9c167a482399e28ccb0975 Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Wed, 9 Oct 2024 14:46:17 +0200 Subject: [PATCH] docs(rt): Link to Read and Write traits from Upgraded doc comment (#3761) --- 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.