1
0
Fork 0

Add docstring to print method

This commit is contained in:
Daniele Tricoli 2018-11-18 23:24:41 +01:00
parent 9065159c32
commit 039414dcaf

View file

@ -47,6 +47,7 @@ impl Config {
}
}
/// Print Config to stdout.
pub fn print(&self) {
for (k, v) in &self.map {
println!("{} = {}", k, v);