about summary refs log tree commit diff
path: root/src/libcore/raw.rs
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2018-11-20 09:34:15 -0500
committerCorey Farwell <coreyf@rwell.org>2018-11-20 09:35:03 -0500
commit033cbfec4d3bb23948a99379f8d63b7cfe5eed45 (patch)
treedafb092e141350a043f38234e513ff1de69cbee0 /src/libcore/raw.rs
parent7a0cef74a8b859184b46d7ae6f7e01367fab5fb0 (diff)
downloadrust-033cbfec4d3bb23948a99379f8d63b7cfe5eed45.tar.gz
rust-033cbfec4d3bb23948a99379f8d63b7cfe5eed45.zip
Incorporate `dyn` into more comments and docs.
Diffstat (limited to 'src/libcore/raw.rs')
-rw-r--r--src/libcore/raw.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/raw.rs b/src/libcore/raw.rs
index a95f05227fb..b7597795b5e 100644
--- a/src/libcore/raw.rs
+++ b/src/libcore/raw.rs
@@ -21,7 +21,7 @@
 /// The representation of a trait object like `&SomeTrait`.
 ///
 /// This struct has the same layout as types like `&SomeTrait` and
-/// `Box<AnotherTrait>`. The [Trait Objects chapter of the
+/// `Box<dyn AnotherTrait>`. The [Trait Objects chapter of the
 /// Book][moreinfo] contains more details about the precise nature of
 /// these internals.
 ///