@@ -762,7 +762,7 @@ mod tests {
762762 #[ test]
763763 fn parse_spec_blank_level_isolated_comma_only ( ) {
764764 // 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
766766 // (which should both be treated as invalid, so ignored).
767767 let ( dirs, filter) = parse_spec ( "," ) ; // should be ignored
768768 assert_eq ! ( dirs. len( ) , 0 ) ;
@@ -772,7 +772,7 @@ mod tests {
772772 #[ test]
773773 fn parse_spec_blank_level_isolated_comma_blank ( ) {
774774 // 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
776776 // string and one blank string. Both should both be treated as
777777 // invalid, so ignored.
778778 let ( dirs, filter) = parse_spec ( ", " ) ; // should be ignored
@@ -783,7 +783,7 @@ mod tests {
783783 #[ test]
784784 fn parse_spec_blank_level_isolated_blank_comma ( ) {
785785 // 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
787787 // string and one empty string. Both should both be treated as
788788 // invalid, so ignored.
789789 let ( dirs, filter) = parse_spec ( " ," ) ; // should be ignored
0 commit comments