cargo fmt
This commit is contained in:
parent
53ba0d6655
commit
b226d2fc55
|
@ -206,7 +206,9 @@ impl Config {
|
||||||
} else if index.starts_with("build.") {
|
} else if index.starts_with("build.") {
|
||||||
self.build.update_value(&index[6..], value);
|
self.build.update_value(&index[6..], value);
|
||||||
} else {
|
} else {
|
||||||
self.rest.insert(index, value).map_err(|e| ErrorKind::TomlQueryError(e))?;
|
self.rest
|
||||||
|
.insert(index, value)
|
||||||
|
.map_err(|e| ErrorKind::TomlQueryError(e))?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Reference in New Issue