Skip to content

Commit c7caa92

Browse files
committed
fix #524 - some more places where html escapes for lt and gt signs aren't necessary because of markdown
1 parent e4278c2 commit c7caa92

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/java/com/marklogic/client/datamovement/DeleteListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* deleteBatcher.awaitCompletion();
3838
* moveMgr.stopJob(ticket);
3939
*
40-
* With Iterator<String>, pass a DeleteListener instance to
40+
* With Iterator<String>, pass a DeleteListener instance to
4141
* QueryBatcher onUrisReady like so:
4242
*
4343
* QueryBatcher deleteBatcher = moveMgr.newQueryBatcher(query)

src/main/java/com/marklogic/client/datamovement/QueryBatcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
*
9393
* Example of queueing uris in memory instead of using withConsistentSnapshot():
9494
*
95-
* ArrayList&lt;String&gt; uris = new ArrayList&lt;&gt;();
95+
* ArrayList<String> uris = new ArrayList<>();
9696
* QueryBatcher getUris = dataMovementManager.newQueryBatcher(query)
9797
* .withBatchSize(5000)
9898
* .onUrisReady( batch -> uris.addAll(Arrays.asList(batch.getItems())) )

src/main/java/com/marklogic/client/datamovement/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* are not limited to export, delete, and transform)
2727
* * provided code can leverage the full feature set of the Java Client API
2828
* * uris usually are matches to a query
29-
* * for corner cases uris can be provided by an Iterator&lt;String&gt;
29+
* * for corner cases uris can be provided by an Iterator<String>
3030
* * paginates through query matches for best scalability
3131
* * paginates with many threads for increased throughput
3232
* * directly queries each host in the cluster with forests for

0 commit comments

Comments
 (0)