Skip to content

Commit

Permalink
fix(from_usage): tabs and spaces should be treated equally
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Apr 19, 2015
1 parent c630969 commit 4fd4418
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/usageparser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ impl<'u> Iterator for UsageParser<'u> {
}
if mult { return Some(UsageToken::Multiple) }
},
Some(' ') | Some('=') | Some(']') | Some('>') => {
Some(' ') | Some('=') | Some(']') | Some('>') | Some('\t') => {
self.e += 1;
continue
},
Expand Down

0 comments on commit 4fd4418

Please sign in to comment.