about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-09-10 09:21:06 +0000
committerbors <bors@rust-lang.org>2023-09-10 09:21:06 +0000
commit01ce2d0ea18bb48d4eb03d7b4b13ed7fd394b1e5 (patch)
tree00e080c8006b7a76a3c9b6a7b95c148d949c12d4 /src/doc
parentdda95c14e1a9356397c6369762047db031e69461 (diff)
parent59ed84a5b8b8651e1779a41ee06e88d4b97a0b24 (diff)
downloadrust-01ce2d0ea18bb48d4eb03d7b4b13ed7fd394b1e5.tar.gz
rust-01ce2d0ea18bb48d4eb03d7b4b13ed7fd394b1e5.zip
Auto merge of #115725 - PhilVoel:patch-1, r=notriddle
Fixed typo in re-exports.md

own't -> won't
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustdoc/src/write-documentation/re-exports.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustdoc/src/write-documentation/re-exports.md b/src/doc/rustdoc/src/write-documentation/re-exports.md
index 593428b8a70..8ce059cc29c 100644
--- a/src/doc/rustdoc/src/write-documentation/re-exports.md
+++ b/src/doc/rustdoc/src/write-documentation/re-exports.md
@@ -86,7 +86,7 @@ pub use self::Hidden as InlinedHidden;
 ```
 
 The same applies on re-exports themselves: if you have multiple re-exports and some of them have
-`#[doc(hidden)]`, then these ones (and only these) own't appear in the documentation:
+`#[doc(hidden)]`, then these ones (and only these) won't appear in the documentation:
 
 ```rust,ignore (inline)
 mod private_mod {