@@ -72,7 +72,6 @@ public boolean isFinished() {
72
72
* Creates a matcher for {@link Iterable}s that matches when a single pass over the
73
73
* examined {@link Iterable} yields a series of items, that contains items logically equal to the
74
74
* corresponding item in the specified items, in the same relative order
75
- * <p/>
76
75
* For example:
77
76
* <pre>assertThat(Arrays.asList("a", "b", "c", "d", "e"), containsInRelativeOrder("b", "d"))</pre>
78
77
*
@@ -93,7 +92,6 @@ public static <E> Matcher<Iterable<? extends E>> containsInRelativeOrder(E... it
93
92
* Creates a matcher for {@link Iterable}s that matches when a single pass over the
94
93
* examined {@link Iterable} yields a series of items, that each satisfying the corresponding
95
94
* matcher in the specified matchers, in the same relative order.
96
- * <p/>
97
95
* For example:
98
96
* <pre>assertThat(Arrays.asList("a", "b", "c", "d", "e"), containsInRelativeOrder(equalTo("b"), equalTo("d")))</pre>
99
97
*
@@ -109,7 +107,6 @@ public static <E> Matcher<Iterable<? extends E>> containsInRelativeOrder(Matcher
109
107
* Creates a matcher for {@link Iterable}s that matches when a single pass over the
110
108
* examined {@link Iterable} yields a series of items, that contains items satisfying the corresponding
111
109
* matcher in the specified list of matchers, in the same relative order.
112
- * <p/>
113
110
* For example:
114
111
* <pre>assertThat(Arrays.asList("a", "b", "c", "d", "e"), contains(Arrays.asList(equalTo("b"), equalTo("d"))))</pre>
115
112
*
0 commit comments