summaryrefslogtreecommitdiffstats
path: root/src/env.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/env.rs')
-rw-r--r--src/env.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/env.rs b/src/env.rs
index ce67069..0617383 100644
--- a/src/env.rs
+++ b/src/env.rs
@@ -63,7 +63,7 @@ impl Default for Environment {
}
impl Source for Environment {
- fn clone_into_box(&self) -> Box<Source + Send + Sync> {
+ fn clone_into_box(&self) -> Box<dyn Source + Send + Sync> {
Box::new((*self).clone())
}