summaryrefslogtreecommitdiffstats
path: root/src/env.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/env.rs')
-rw-r--r--src/env.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/env.rs b/src/env.rs
index 507ace6..736d584 100644
--- a/src/env.rs
+++ b/src/env.rs
@@ -1,7 +1,7 @@
use std::env;
use crate::error::*;
-use crate::map::MapImpl;
+use crate::map::Map;
use crate::source::Source;
use crate::value::{Value, ValueKind};
@@ -79,8 +79,8 @@ impl Source for Environment {
Box::new((*self).clone())
}
- fn collect(&self) -> Result<MapImpl<String, Value>> {
- let mut m = MapImpl::new();
+ fn collect(&self) -> Result<Map<String, Value>> {
+ let mut m = Map::new();
let uri: String = "the environment".into();
let separator = self.separator.as_deref().unwrap_or("");