about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorAndy Caldwell <andycaldwell@microsoft.com>2023-08-24 20:15:41 +0100
committerAndy Caldwell <andycaldwell@microsoft.com>2023-09-08 12:46:09 +0100
commit679267f2ac291202e9c8168edd1df8a9cf3aecb2 (patch)
tree9f1389be3144b18f3223ab995ce6cd24482a368a /src/doc
parentde1600d110749ae6e428eb59ecdce3c0a56f1223 (diff)
downloadrust-679267f2ac291202e9c8168edd1df8a9cf3aecb2.tar.gz
rust-679267f2ac291202e9c8168edd1df8a9cf3aecb2.zip
Rename the feature, but not the attribute, to `coverage_attribute`
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/unstable-book/src/language-features/coverage-attribute.md (renamed from src/doc/unstable-book/src/language-features/coverage.md)4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/unstable-book/src/language-features/coverage.md b/src/doc/unstable-book/src/language-features/coverage-attribute.md
index d200bf6b2bc..0a9bd07de07 100644
--- a/src/doc/unstable-book/src/language-features/coverage.md
+++ b/src/doc/unstable-book/src/language-features/coverage-attribute.md
@@ -1,4 +1,4 @@
-# `coverage`
+# `coverage_attribute`
 
 The tracking issue for this feature is: [#84605]
 
@@ -16,7 +16,7 @@ instrumentation in an annotated function. This might be useful to:
 ## Example
 
 ```rust
-#![feature(coverage)]
+#![feature(coverage_attribute)]
 
 // `foo()` will get coverage instrumentation (by default)
 fn foo() {