Skip to content

Commit 4fd4418

Browse files
committed
fix(from_usage): tabs and spaces should be treated equally
1 parent c630969 commit 4fd4418

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/usageparser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ impl<'u> Iterator for UsageParser<'u> {
113113
}
114114
if mult { return Some(UsageToken::Multiple) }
115115
},
116-
Some(' ') | Some('=') | Some(']') | Some('>') => {
116+
Some(' ') | Some('=') | Some(']') | Some('>') | Some('\t') => {
117117
self.e += 1;
118118
continue
119119
},

0 commit comments

Comments
 (0)