4646 * information to be used by the handle.
4747 * <p>
4848 * The same interface is available to both users of the Oracle NoSQL Database
49- * Cloud Service and the on-premise Oracle NoSQL Database; however, some methods
49+ * Cloud Service and the on-premises Oracle NoSQL Database; however, some methods
5050 * and/or parameters are specific to each environment. The documentation has notes
5151 * about whether a class, method, or parameter is environment-specific. Unless
5252 * otherwise noted they are applicable to both environments.
@@ -280,12 +280,12 @@ public interface NoSQLHandle extends AutoCloseable {
280280 /**
281281 * Queries a table based on the query statement specified in the
282282 * {@link QueryRequest}.
283- *
283+ * <p>
284284 * Queries that include a full shard key will execute much more efficiently
285285 * than more distributed queries that must go to multiple shards.
286286 * <p>
287287 * Table- and system-style queries such as "CREATE TABLE ..." or "DROP TABLE .."
288- * are not supported by this interfaces . Those operations must be performed using
288+ * are not supported by this interface . Those operations must be performed using
289289 * {@link #tableRequest} or {@link #systemRequest} as appropriate.
290290 * <p>
291291 * The amount of data read by a single query request is limited by a system
@@ -315,7 +315,7 @@ public interface NoSQLHandle extends AutoCloseable {
315315 /**
316316 * Queries a table based on the query statement specified in the
317317 * {@link QueryRequest} while returning an iterable result.
318- *
318+ * <p>
319319 * Queries that include a full shard key will execute much more efficiently
320320 * than more distributed queries that must go to multiple shards.
321321 * <p>
@@ -325,7 +325,7 @@ public interface NoSQLHandle extends AutoCloseable {
325325 * and not this method.
326326 * <p>
327327 * Table- and system-style queries such as "CREATE TABLE ..." or "DROP TABLE .."
328- * are not supported by this interfaces . Those operations must be performed using
328+ * are not supported by this interface . Those operations must be performed using
329329 * {@link #tableRequest} or {@link #systemRequest} as appropriate.
330330 * <p>
331331 * The results are returned through an iterator, if connected to the
@@ -428,7 +428,7 @@ TableResult doTableRequest(TableRequest request,
428428 int pollIntervalMs );
429429
430430 /**
431- * On-premise only.
431+ * On-premises only.
432432 * <p>
433433 * Performs a system operation on the system, such as
434434 * administrative operations that don't affect a specific table. For
@@ -460,7 +460,7 @@ TableResult doTableRequest(TableRequest request,
460460 SystemResult systemRequest (SystemRequest request );
461461
462462 /**
463- * On-premise only.
463+ * On-premises only.
464464 * <p>
465465 * Checks the status of an operation previously performed using
466466 * {@link #systemRequest}.
@@ -482,7 +482,7 @@ TableResult doTableRequest(TableRequest request,
482482 * state, provisioned throughput and capacity and schema. Dynamic
483483 * information such as usage is obtained using {@link #getTableUsage}.
484484 * Throughput, capacity and usage information is only available when using
485- * the Cloud Service and will be null or not defined on-premise .
485+ * the Cloud Service and will be null or not defined on-premises .
486486 *
487487 * @param request the input parameters for the operation
488488 *
@@ -556,7 +556,7 @@ TableResult doTableRequest(TableRequest request,
556556 GetIndexesResult getIndexes (GetIndexesRequest request );
557557
558558 /**
559- * On-premise only.
559+ * On-premises only.
560560 * <p>
561561 * Returns the namespaces in a store as an array of String.
562562 *
@@ -565,16 +565,16 @@ TableResult doTableRequest(TableRequest request,
565565 String [] listNamespaces ();
566566
567567 /**
568- * On-premise only.
569- *
568+ * On-premises only.
569+ * <p>
570570 * Returns the roles in a store as an array of String.
571571 *
572572 * @return the list of roles or null if none are found
573573 */
574574 String [] listRoles ();
575575
576576 /**
577- * On-premise only.
577+ * On-premises only.
578578 * <p>
579579 * Returns the users in a store as an array of {@link UserInfo}.
580580 *
@@ -583,7 +583,7 @@ TableResult doTableRequest(TableRequest request,
583583 UserInfo [] listUsers ();
584584
585585 /**
586- * On-premise only.
586+ * On-premises only.
587587 * <p>
588588 * A convenience method that performs a SystemRequest and waits for
589589 * completion of the operation. This is the same as calling {@link
0 commit comments