From 72ee6c2afdaf226b43a3a0b2fe66a7440c31091c Mon Sep 17 00:00:00 2001 From: Toby Vincent Date: Thu, 17 Mar 2022 20:19:54 -0500 Subject: fix: changed chars to single quotes --- zone_zfs/src/zfs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zone_zfs/src/zfs.rs') diff --git a/zone_zfs/src/zfs.rs b/zone_zfs/src/zfs.rs index 65f938d..b1c4ed2 100644 --- a/zone_zfs/src/zfs.rs +++ b/zone_zfs/src/zfs.rs @@ -40,7 +40,7 @@ impl ZFS { .map(|s| { s.lines() .into_iter() - .filter_map(|l| l.split_once(" ").map(|s| (s.0.trim(), s.1.trim()))) + .filter_map(|l| l.split_once(' ').map(|s| (s.0.trim(), s.1.trim()))) .filter_map(|(dataset, mountpoint)| { let mountpoint = if mountpoint == "none" { PathBuf::from(mountpoint) -- cgit v1.2.3-70-g09d2