From da85c3ffe7ab24aa371d130b9a3f2798fb6e849a Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 1 Dec 2015 18:36:04 +0100 Subject: [PATCH] Rename function: store_path_str() -> store_path() --- src/configuration.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configuration.rs b/src/configuration.rs index 385df338..c8eb8e67 100644 --- a/src/configuration.rs +++ b/src/configuration.rs @@ -64,7 +64,7 @@ impl Configuration { self.debugging } - pub fn store_path_str(&self) -> String { + pub fn store_path(&self) -> String { format!("{}{}", self.rtp, self.store_sub) } @@ -100,7 +100,7 @@ impl Debug for Configuration { self.is_verbose(), self.is_debugging(), self.get_rtp(), - self.store_path_str() + self.store_path() ) }