@@ -22,15 +22,15 @@ export class Conflicts {
2222
2323 /**
2424 * Queries all conflicts.
25- * @param query Query configuration for the operation. See {@link SqlQuerySpec} for more info on how to configure a query.
26- * @param options Use to set options like response page size, continuation tokens, etc.
25+ * @param query - Query configuration for the operation. See {@link SqlQuerySpec} for more info on how to configure a query.
26+ * @param options - Use to set options like response page size, continuation tokens, etc.
2727 * @returns {@link QueryIterator } Allows you to return results in an array or iterate over them one at a time.
2828 */
2929 public query ( query : string | SqlQuerySpec , options ?: FeedOptions ) : QueryIterator < any > ;
3030 /**
3131 * Queries all conflicts.
32- * @param query Query configuration for the operation. See {@link SqlQuerySpec} for more info on how to configure a query.
33- * @param options Use to set options like response page size, continuation tokens, etc.
32+ * @param query - Query configuration for the operation. See {@link SqlQuerySpec} for more info on how to configure a query.
33+ * @param options - Use to set options like response page size, continuation tokens, etc.
3434 * @returns {@link QueryIterator } Allows you to return results in an array or iterate over them one at a time.
3535 */
3636 public query < T > ( query : string | SqlQuerySpec , options ?: FeedOptions ) : QueryIterator < T > ;
@@ -52,7 +52,7 @@ export class Conflicts {
5252
5353 /**
5454 * Reads all conflicts
55- * @param options Use to set options like response page size, continuation tokens, etc.
55+ * @param options - Use to set options like response page size, continuation tokens, etc.
5656 */
5757 public readAll ( options ?: FeedOptions ) : QueryIterator < ConflictDefinition & Resource > {
5858 return this . query < ConflictDefinition & Resource > ( undefined , options ) ;
0 commit comments