summaryrefslogtreecommitdiffstats
path: root/src/parse.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.rs')
-rw-r--r--src/parse.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.rs b/src/parse.rs
index 868da96..8a9fabb 100644
--- a/src/parse.rs
+++ b/src/parse.rs
@@ -58,7 +58,7 @@ pub fn choice(src: &str) -> Result<Choice, ParseError> {
}
};
- return Ok(Choice::new(start, end, kind));
+ Ok(Choice::new(start, end, kind))
}
pub fn output_field_separator(src: &str) -> String {