From 2af5f404f4780db570f6d0802bfe7241aa208058 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 20 Nov 2015 15:34:06 +0100 Subject: [PATCH] Fix typo in StorageBackend::new() --- src/storage/backend.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/backend.rs b/src/storage/backend.rs index e430c65a..4b53f3fc 100644 --- a/src/storage/backend.rs +++ b/src/storage/backend.rs @@ -16,7 +16,7 @@ pub struct StorageBackend<'a> { impl<'a> StorageBackend<'a> { - fn new(bashpath: String, module: &'a Module) -> StorageBackend<'a> { + fn new(basepath: String, module: &'a Module) -> StorageBackend<'a> { StorageBackend { basepath: basepath, module: module,