about summary refs log tree commit diff
path: root/src/test
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/test
parent7a0cef74a8b859184b46d7ae6f7e01367fab5fb0 (diff)
downloadrust-033cbfec4d3bb23948a99379f8d63b7cfe5eed45.tar.gz
rust-033cbfec4d3bb23948a99379f8d63b7cfe5eed45.zip
Incorporate `dyn` into more comments and docs.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/string-box-error.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/run-pass/string-box-error.rs b/src/test/run-pass/string-box-error.rs
index a80d9a05935..5d8a664b93d 100644
--- a/src/test/run-pass/string-box-error.rs
+++ b/src/test/run-pass/string-box-error.rs
@@ -8,7 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// Ensure that both `Box<Error + Send + Sync>` and `Box<Error>` can be obtained from `String`.
+// Ensure that both `Box<dyn Error + Send + Sync>` and `Box<dyn Error>` can be
+// obtained from `String`.
 
 use std::error::Error;