diff --git a/crates/nu_plugin_formats/src/from/plist.rs b/crates/nu_plugin_formats/src/from/plist.rs index 7852dcde8e..8c2ad7c7c7 100644 --- a/crates/nu_plugin_formats/src/from/plist.rs +++ b/crates/nu_plugin_formats/src/from/plist.rs @@ -114,7 +114,7 @@ fn convert_array(plist_array: &[PlistValue], span: Span) -> Result, pub fn convert_date(plist_date: &PlistDate) -> DateTime { // In the docs the plist date object is listed as a utc timestamp, so this - // conversion shoould be fine + // conversion should be fine let plist_sys_time: SystemTime = plist_date.to_owned().into(); let utc_date: DateTime = plist_sys_time.into(); let utc_offset = utc_date.offset().fix();