summaryrefslogtreecommitdiffstats
path: root/src/choice.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/choice.rs')
-rw-r--r--src/choice.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/choice.rs b/src/choice.rs
index 18f2a03..dcf3fe0 100644
--- a/src/choice.rs
+++ b/src/choice.rs
@@ -196,7 +196,7 @@ impl Choice {
.unwrap()
};
- return (start, end);
+ (start, end)
}
}
@@ -215,7 +215,7 @@ mod tests {
I: IntoIterator,
I::Item: Into<OsString> + Clone,
{
- return Config::new(Opt::from_iter(iter));
+ Config::new(Opt::from_iter(iter))
}
}