about summary refs log tree commit diff
path: root/src/doc/rustdoc
diff options
context:
space:
mode:
authorPhilVoel <56931301+PhilVoel@users.noreply.github.com>2023-09-10 02:54:37 +0200
committerGitHub <noreply@github.com>2023-09-10 02:54:37 +0200
commit59ed84a5b8b8651e1779a41ee06e88d4b97a0b24 (patch)
tree39a980a49361f941a2d98775d4f9ca561181ab21 /src/doc/rustdoc
parent8ed4537d7c238eb77509d82445cf1cb861a3b5ff (diff)
downloadrust-59ed84a5b8b8651e1779a41ee06e88d4b97a0b24.tar.gz
rust-59ed84a5b8b8651e1779a41ee06e88d4b97a0b24.zip
Fixed typo in re-exports.md
own't -> won't
Diffstat (limited to 'src/doc/rustdoc')
-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 {