Add documentation for Parser::arg_places

This commit is contained in:
Esteban Küber
2018-07-24 09:46:41 -07:00
parent bde2be0b1c
commit f487e39e91

View File

@@ -154,6 +154,7 @@ pub struct Parser<'a> {
style: Option<usize>,
/// How many newlines have been seen in the string so far, to adjust the error spans
seen_newlines: usize,
/// Start and end byte offset of every successfuly parsed argument
pub arg_places: Vec<(usize, usize)>,
}