diff options
Diffstat (limited to 'src/micropub')
-rw-r--r-- | src/micropub/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/micropub/util.rs b/src/micropub/util.rs index 940d7c3..b6a045d 100644 --- a/src/micropub/util.rs +++ b/src/micropub/util.rs @@ -26,7 +26,7 @@ fn get_folder_from_type(post_type: &str) -> String { /// Reset the datetime to a proper datetime. /// Do not attempt to recover the information. -/// Do not pass GO. Do not collect $200. +/// Do not pass GO. Do not collect $200. fn reset_dt(post: &mut serde_json::Value) -> DateTime<FixedOffset> { let curtime: DateTime<Local> = Local::now(); post["properties"]["published"] = json!([curtime.to_rfc3339()]); |