From c9a7521fe5ab91c8dfc1ff0e65ffa11eacd6f3cc Mon Sep 17 00:00:00 2001 From: cool-mist Date: Thu, 26 Dec 2024 00:06:40 +0530 Subject: [PATCH] Minor fixes --- README.md | 2 +- src/fixer.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d634b7d..455e53e 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,4 @@ lf_fixer --help - [x] Edit files to fix line ending mismatches - [x] To user defined line ending, - [x] To the line ending of the majority of the files -- [] Add tests +- [ ] Add tests diff --git a/src/fixer.rs b/src/fixer.rs index 14564a2..0cd4c9e 100644 --- a/src/fixer.rs +++ b/src/fixer.rs @@ -1,6 +1,6 @@ use std::{ fs::File, - io::{Read, Seek, SeekFrom, Write}, + io::{Read, Write}, }; use crate::stats::LineSep;