@@ -90,19 +90,17 @@ public default List<HistoryEntry> lookupTail(int length, ResultFlag... flags) {
90
90
* Lookup the last {@code length} input cells that match the {@code pattern}.
91
91
* <p>
92
92
* The {@code pattern} is an sqlite glob. More specifically:
93
- * <pre>
94
- * <ul>
95
- * <li>asterisk ({@code *}) matches 0 or more of any characters</li>
96
- * <li>question mark ({@code ?}) matches exactly 1 of any character</li>
97
- * <li>
98
- * list wildcard ({@code []}) matches any character from the list
99
- * <ul>
100
- * <li>character ranges are supported with {@code [a-z]} syntax to match {@code a} to {@code z} inclusive</li>
101
- * <li>starting a list wildcard with {@code ^} negates the wildcard</li>
102
- * </ul>
103
- * </li>
104
- * </ul>
105
- * </pre>
93
+ * <ul>
94
+ * <li>asterisk ({@code *}) matches 0 or more of any characters</li>
95
+ * <li>question mark ({@code ?}) matches exactly 1 of any character</li>
96
+ * <li>
97
+ * list wildcard ({@code []}) matches any character from the list
98
+ * <ul>
99
+ * <li>character ranges are supported with {@code [a-z]} syntax to match {@code a} to {@code z} inclusive</li>
100
+ * <li>starting a list wildcard with {@code ^} negates the wildcard</li>
101
+ * </ul>
102
+ * </li>
103
+ * </ul>
106
104
*
107
105
* @param pattern a glob pattern that input cells must match.
108
106
* @param length the number of results to include in the results.
@@ -117,19 +115,17 @@ public default List<HistoryEntry> lookupTail(int length, ResultFlag... flags) {
117
115
* Lookup the last {@code length} input cells that match the {@code pattern}.
118
116
* <p>
119
117
* The {@code pattern} is an sqlite glob. More specifically:
120
- * <pre>
121
- * <ul>
122
- * <li>asterisk ({@code *}) matches 0 or more of any characters</li>
123
- * <li>question mark ({@code ?}) matches exactly 1 of any character</li>
124
- * <li>
125
- * list wildcard ({@code []}) matches any character from the list
126
- * <ul>
127
- * <li>character ranges are supported with {@code [a-z]} syntax to match {@code a} to {@code z} inclusive</li>
128
- * <li>starting a list wildcard with {@code ^} negates the wildcard</li>
129
- * </ul>
130
- * </li>
131
- * </ul>
132
- * </pre>
118
+ * <ul>
119
+ * <li>asterisk ({@code *}) matches 0 or more of any characters</li>
120
+ * <li>question mark ({@code ?}) matches exactly 1 of any character</li>
121
+ * <li>
122
+ * list wildcard ({@code []}) matches any character from the list
123
+ * <ul>
124
+ * <li>character ranges are supported with {@code [a-z]} syntax to match {@code a} to {@code z} inclusive</li>
125
+ * <li>starting a list wildcard with {@code ^} negates the wildcard</li>
126
+ * </ul>
127
+ * </li>
128
+ * </ul>
133
129
*
134
130
* @param pattern a glob pattern that input cells must match.
135
131
* @param length the number of results to include in the results.
0 commit comments