From 1690aeb3bb1d7250bb7762042149b1a47fffc1b4 Mon Sep 17 00:00:00 2001 From: Jack Wright Date: Mon, 5 Aug 2024 10:24:44 -0700 Subject: [PATCH] spelling --- crates/nu_plugin_formats/src/from/plist.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();