diff options
| author | Corey Farwell <coreyf@rwell.org> | 2018-11-20 09:34:15 -0500 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2018-11-20 09:35:03 -0500 |
| commit | 033cbfec4d3bb23948a99379f8d63b7cfe5eed45 (patch) | |
| tree | dafb092e141350a043f38234e513ff1de69cbee0 /src/test | |
| parent | 7a0cef74a8b859184b46d7ae6f7e01367fab5fb0 (diff) | |
| download | rust-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.rs | 3 |
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; |
