From 9a346f4d0c8e568763401bd05f5c213ab282838d Mon Sep 17 00:00:00 2001 From: Avril Date: Fri, 25 Dec 2020 13:44:42 +0000 Subject: [PATCH] non --- src/ext.rs | 4 ++-- src/main.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ext.rs b/src/ext.rs index 99c0279..13fcad9 100644 --- a/src/ext.rs +++ b/src/ext.rs @@ -2,12 +2,12 @@ use std::fmt; pub trait FlatJoinStrsExt: Sized { - /// Join an iterator of iterators `str` with a seperator + /// Join an iterator of iterators of strings with a seperator `str` fn flat_join(self, with: &str) -> String; } pub trait JoinStrsExt: Sized { - /// Join an iterator of `str` with a seperator + /// Join an iterator of strings with a seperator `str`. fn join(self, with: &str) -> String; } diff --git a/src/main.rs b/src/main.rs index 3c1baad..dccee53 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,6 +6,7 @@ #[macro_use] extern crate cfg_if; #[macro_use] extern crate ad_hoc_iter; +#[allow(unused_imports)] use color_eyre::{ eyre::{ eyre,