Skip to content

Commit 872d893

Browse files
authored
chore: remove remaining references to tracing-nursery (#144)
This branch removes all remaining references to the non-existent `tracing-nursery` repository that weren't removed in #142 and #141. Closes #125 * chore: remove nursery mentions from .github * core: remove references to `tracing-nursery` Signed-off-by: Eliza Weisman <[email protected]>
1 parent 1a1002a commit 872d893

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows)
3434
### Crates
3535

3636
<!--
37-
If known, please specify the affected tracing-nursery crates. Otherwise, delete this
37+
If known, please specify the affected tracing crates. Otherwise, delete this
3838
section.
3939
-->
4040

.github/ISSUE_TEMPLATE/feature_request.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ about: I have a suggestion (and may want to implement it 🙂)!
99
### Crates
1010

1111
<!--
12-
If known, please specify the tracing-nursery crate or crates the new feature
13-
should be added to. Otherwise, delete this section.
12+
If known, please specify the tracing crate or crates the new feature should
13+
be added to. Otherwise, delete this section.
1414
-->
1515

1616
### Motivation

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ the requirements below.
44
55
Bug fixes and new features should include tests.
66
7-
Contributors guide: https://github.com/tokio-rs/tracing-nursery/blob/master/CONTRIBUTING.md
7+
Contributors guide: https://github.com/tokio-rs/tracing/blob/master/CONTRIBUTING.md
88
-->
99

1010
## Motivation

tracing-core/src/lib.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
//! Core primitives for `tracing`.
66
//!
7-
//! `tracing` is a framework for instrumenting Rust programs to collect
7+
//! [`tracing`] is a framework for instrumenting Rust programs to collect
88
//! structured, event-based diagnostic information. This crate defines the core
99
//! primitives of `tracing`.
1010
//!
@@ -31,7 +31,7 @@
3131
//! fully-featured API. However, this crate's API will change very infrequently,
3232
//! so it may be used when dependencies must be very stable.
3333
//!
34-
//! The [`tracing-nursery`] repository contains less stable crates designed to
34+
//! The [`tokio-rs/tracing`] repository contains less stable crates designed to
3535
//! be used with the `tracing` ecosystem. It includes a collection of
3636
//! `Subscriber` implementations, as well as utility and adapter crates.
3737
//!
@@ -45,7 +45,8 @@
4545
//! [`Value`]: field/trait.Value.html
4646
//! [`ValueSet`]: field/struct.ValueSet.html
4747
//! [`Dispatch`]: dispatcher/struct.Dispatch.html
48-
//! [`tracing-nursery`]: https://github.com/tokio-rs/tracing-nursery
48+
//! [`tokio-rs/tracing`]: https://github.com/tokio-rs/tracing
49+
//! [`tracing`]: https://github.com/tokio-rs/tracing
4950
#[macro_use]
5051
extern crate lazy_static;
5152

0 commit comments

Comments
 (0)