Rename function: store_path_str() -> store_path()

This commit is contained in:
Matthias Beyer 2015-12-01 18:36:04 +01:00
parent 5f4718a2e5
commit da85c3ffe7

View file

@ -64,7 +64,7 @@ impl Configuration {
self.debugging self.debugging
} }
pub fn store_path_str(&self) -> String { pub fn store_path(&self) -> String {
format!("{}{}", self.rtp, self.store_sub) format!("{}{}", self.rtp, self.store_sub)
} }
@ -100,7 +100,7 @@ impl Debug for Configuration {
self.is_verbose(), self.is_verbose(),
self.is_debugging(), self.is_debugging(),
self.get_rtp(), self.get_rtp(),
self.store_path_str() self.store_path()
) )
} }