@@ -638,10 +638,10 @@ impl<'a, P: Pattern<'a>> SplitInternal<'a, P> {
638
638
639
639
generate_pattern_iterators ! {
640
640
forward:
641
- /// Created with the method `.split()`.
641
+ # [ doc= " Created with the method `.split()`." ]
642
642
struct Split ;
643
643
reverse:
644
- /// Created with the method `.rsplit()`.
644
+ # [ doc= " Created with the method `.rsplit()`." ]
645
645
struct RSplit ;
646
646
stability:
647
647
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -652,10 +652,10 @@ generate_pattern_iterators! {
652
652
653
653
generate_pattern_iterators ! {
654
654
forward:
655
- /// Created with the method `.split_terminator()`.
655
+ # [ doc= " Created with the method `.split_terminator()`." ]
656
656
struct SplitTerminator ;
657
657
reverse:
658
- /// Created with the method `.rsplit_terminator()`.
658
+ # [ doc= " Created with the method `.rsplit_terminator()`." ]
659
659
struct RSplitTerminator ;
660
660
stability:
661
661
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -698,10 +698,10 @@ impl<'a, P: Pattern<'a>> SplitNInternal<'a, P> {
698
698
699
699
generate_pattern_iterators ! {
700
700
forward:
701
- /// Created with the method `.splitn()`.
701
+ # [ doc= " Created with the method `.splitn()`." ]
702
702
struct SplitN ;
703
703
reverse:
704
- /// Created with the method `.rsplitn()`.
704
+ # [ doc= " Created with the method `.rsplitn()`." ]
705
705
struct RSplitN ;
706
706
stability:
707
707
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -732,10 +732,10 @@ impl<'a, P: Pattern<'a>> MatchIndicesInternal<'a, P> {
732
732
733
733
generate_pattern_iterators ! {
734
734
forward:
735
- /// Created with the method `.match_indices()`.
735
+ # [ doc= " Created with the method `.match_indices()`." ]
736
736
struct MatchIndices ;
737
737
reverse:
738
- /// Created with the method `.rmatch_indices()`.
738
+ # [ doc= " Created with the method `.rmatch_indices()`." ]
739
739
struct RMatchIndices ;
740
740
stability:
741
741
#[ unstable( feature = "core" ,
@@ -773,10 +773,10 @@ impl<'a, P: Pattern<'a>> MatchesInternal<'a, P> {
773
773
774
774
generate_pattern_iterators ! {
775
775
forward:
776
- /// Created with the method `.matches()`.
776
+ # [ doc= " Created with the method `.matches()`." ]
777
777
struct Matches ;
778
778
reverse:
779
- /// Created with the method `.rmatches()`.
779
+ # [ doc= " Created with the method `.rmatches()`." ]
780
780
struct RMatches ;
781
781
stability:
782
782
#[ unstable( feature = "core" , reason = "type got recently added" ) ]
0 commit comments