Compare commits

..

No commits in common. "eb5d8b8940c1fa9aee884d6847fba427df2534e5" and "64458d4018720c4c103bb75cd556768c1ea5da3f" have entirely different histories.

2 changed files with 4 additions and 6 deletions

View file

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1706913249, "lastModified": 1704194953,
"narHash": "sha256-x3M7iV++CsvRXI1fpyFPduGELUckZEhSv0XWnUopAG8=", "narHash": "sha256-RtDKd8Mynhe5CFnVT8s0/0yqtWFMM9LmCzXv/YKxnq4=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e92b6015881907e698782c77641aa49298330223", "rev": "bd645e8668ec6612439a9ee7e71f7eac4099d4f6",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,5 +1,3 @@
#![warn(clippy::all, clippy::pedantic, clippy::nursery)]
use std::{ use std::{
collections::BTreeMap, collections::BTreeMap,
error::Error, error::Error,
@ -100,7 +98,7 @@ impl ToDooDooApp {
); );
file.read_to_string(&mut notes) file.read_to_string(&mut notes)
.expect("failed to read file"); .expect("failed to read file");
Self { notes, file } Self { file, notes }
} }
fn save(&mut self) { fn save(&mut self) {