@@ -762,7 +762,7 @@ mod tests {
762
762
#[ test]
763
763
fn parse_spec_blank_level_isolated_comma_only ( ) {
764
764
// The spec should contain zero or more comma-separated string slices,
765
- // so a comma-only string should be interpretted as two empty strings
765
+ // so a comma-only string should be interpreted as two empty strings
766
766
// (which should both be treated as invalid, so ignored).
767
767
let ( dirs, filter) = parse_spec ( "," ) ; // should be ignored
768
768
assert_eq ! ( dirs. len( ) , 0 ) ;
@@ -772,7 +772,7 @@ mod tests {
772
772
#[ test]
773
773
fn parse_spec_blank_level_isolated_comma_blank ( ) {
774
774
// The spec should contain zero or more comma-separated string slices,
775
- // so this bogus spec should be interpretted as containing one empty
775
+ // so this bogus spec should be interpreted as containing one empty
776
776
// string and one blank string. Both should both be treated as
777
777
// invalid, so ignored.
778
778
let ( dirs, filter) = parse_spec ( ", " ) ; // should be ignored
@@ -783,7 +783,7 @@ mod tests {
783
783
#[ test]
784
784
fn parse_spec_blank_level_isolated_blank_comma ( ) {
785
785
// The spec should contain zero or more comma-separated string slices,
786
- // so this bogus spec should be interpretted as containing one blank
786
+ // so this bogus spec should be interpreted as containing one blank
787
787
// string and one empty string. Both should both be treated as
788
788
// invalid, so ignored.
789
789
let ( dirs, filter) = parse_spec ( " ," ) ; // should be ignored
0 commit comments