Coding style

This commit is contained in:
Adrian Heine 2019-03-01 18:47:47 +01:00
parent cbb5742ac3
commit abb6947853
33 changed files with 79 additions and 151 deletions

View file

@ -13,7 +13,7 @@ pub struct Dir<D> where D: AsRef<str> {
impl<D> Dir<D> where D: AsRef<str> {
pub fn new(path: D) -> Self {
Dir { path: path }
Dir { path }
}
}