Rename lazyfile file to file_abstraction

This commit is contained in:
Marcel Müller 2016-07-22 15:14:30 +02:00
parent c8e296e221
commit 60a315e553
No known key found for this signature in database
GPG key ID: 84BD3634786D56CF
3 changed files with 2 additions and 2 deletions

View file

@ -32,5 +32,5 @@ pub mod error;
pub mod hook;
pub mod store;
mod configuration;
mod lazyfile;
mod file_abstraction;

View file

@ -25,7 +25,7 @@ use error::{ParserErrorKind, ParserError};
use error::{StoreError as SE, StoreErrorKind as SEK};
use error::MapErrInto;
use storeid::{IntoStoreId, StoreId, StoreIdIterator};
use lazyfile::FileAbstraction;
use file_abstraction::FileAbstraction;
use hook::aspect::Aspect;
use hook::error::HookErrorKind;