diff --git a/src/runtime-rs/crates/resource/src/share_fs/mod.rs b/src/runtime-rs/crates/resource/src/share_fs/mod.rs index d42a33e459..98e81839b0 100644 --- a/src/runtime-rs/crates/resource/src/share_fs/mod.rs +++ b/src/runtime-rs/crates/resource/src/share_fs/mod.rs @@ -165,6 +165,6 @@ pub fn new(id: &str, config: &SharedFsInfo) -> Result> { VIRTIO_FS => Ok(Arc::new( ShareVirtioFsStandalone::new(id, config).context("new standalone virtio fs")?, )), - _ => Err(anyhow!("unsupported shred fs {:?}", &shared_fs)), + _ => Err(anyhow!("unsupported shared fs {:?}", &shared_fs)), } }