From 8bafd635e75b75ca82dfd338f043048966e42783 Mon Sep 17 00:00:00 2001 From: yuanyan <1846865993@qq.com> Date: Thu, 1 May 2025 05:30:56 +0800 Subject: [PATCH 1/2] docs: update instrument doc --- tracing-attributes/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracing-attributes/src/lib.rs b/tracing-attributes/src/lib.rs index 71910d9a5f..6645f43829 100644 --- a/tracing-attributes/src/lib.rs +++ b/tracing-attributes/src/lib.rs @@ -325,7 +325,7 @@ mod expand; /// /// It also works with [async-trait](https://crates.io/crates/async-trait) /// (a crate that allows defining async functions in traits, -/// something not currently possible in Rust), +/// something not currently possible before Rust 1.75), /// and hopefully most libraries that exhibit similar behaviors: /// /// ``` From eaef7257754d6a5ca033ed4917d8c1720b9366a9 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 30 May 2025 12:27:12 +0200 Subject: [PATCH 2/2] Update tracing-attributes/src/lib.rs --- tracing-attributes/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracing-attributes/src/lib.rs b/tracing-attributes/src/lib.rs index 6645f43829..f993b4f3aa 100644 --- a/tracing-attributes/src/lib.rs +++ b/tracing-attributes/src/lib.rs @@ -325,7 +325,7 @@ mod expand; /// /// It also works with [async-trait](https://crates.io/crates/async-trait) /// (a crate that allows defining async functions in traits, -/// something not currently possible before Rust 1.75), +/// something that wasn't possible before Rust 1.75), /// and hopefully most libraries that exhibit similar behaviors: /// /// ```