Skip to content

Commit 0f1c687

Browse files
committed
Fix tidy error
1 parent 851a284 commit 0f1c687

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cargo/util/config.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,8 @@ impl Config {
237237
}
238238
}
239239

240-
pub fn get_path_and_args(&self, key: &str) -> CargoResult<Option<Value<(PathBuf, Vec<String>)>>> {
240+
pub fn get_path_and_args(&self, key: &str)
241+
-> CargoResult<Option<Value<(PathBuf, Vec<String>)>>> {
241242
if let Some(mut val) = self.get_list_or_split_string(key)? {
242243
if !val.val.is_empty() {
243244
return Ok(Some(Value {

0 commit comments

Comments
 (0)