diff options
| author | Ralf Jung <post@ralfj.de> | 2020-09-26 12:58:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-26 12:58:28 +0200 |
| commit | 0a19836a81181244df46d8fe4f05e1898be0d1ed (patch) | |
| tree | c5bb17bcb795f134d905f61eae7190f1e651b76e | |
| parent | f614ae4a30b6f89e8284af4671224f26ead7c24b (diff) | |
| parent | 21ee1716ee395398427f3bd8310d75de7e23e57e (diff) | |
| download | rust-0a19836a81181244df46d8fe4f05e1898be0d1ed.tar.gz rust-0a19836a81181244df46d8fe4f05e1898be0d1ed.zip | |
Rollup merge of #77181 - GuillaumeGomez:add-pointer-alias, r=jyn514,pickfire
Add doc alias for pointer primitive
| -rw-r--r-- | library/std/src/primitive_docs.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/src/primitive_docs.rs b/library/std/src/primitive_docs.rs index 2a4cb22cc52..81bbf376378 100644 --- a/library/std/src/primitive_docs.rs +++ b/library/std/src/primitive_docs.rs @@ -384,6 +384,7 @@ mod prim_char {} #[stable(feature = "rust1", since = "1.0.0")] mod prim_unit {} +#[doc(alias = "ptr")] #[doc(primitive = "pointer")] // /// Raw, unsafe pointers, `*const T`, and `*mut T`. |
