Skip to content

Commit

Permalink
docs: fix javadoc errors (#1126)
Browse files Browse the repository at this point in the history
* docs: fix javadoc errors

* fix

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* more fixes

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
kolea2 and gcf-owl-bot[bot] committed Jun 29, 2023
1 parent d28c880 commit d4b11bb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* }
* }</pre>
*
* <h4>{@link GqlQuery} example:</h4>
* <p>{@link GqlQuery} example:
*
* <pre>{@code
* GqlQuery<?> selectAllGqlQuery = Query.newGqlQueryBuilder(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
import java.util.Objects;

/**
* The result of an {@link AggregationQuery} query submission. Contains a {@link
* List<AggregationResult>} and readTime {@link Timestamp} in it.
* The result of an {@link AggregationQuery} query submission. Contains a List&lt;{@link
* AggregationResult}&gt; and readTime {@link Timestamp} in it.
*
* <p>This can be used to iterate over an underlying {@link List<AggregationResult>} directly.
* <p>This can be used to iterate over an underlying List&lt;{@link AggregationResult}&gt; directly.
*/
public class AggregationResults implements Iterable<AggregationResult> {

Expand All @@ -41,7 +41,7 @@ public AggregationResults(List<AggregationResult> aggregationResults, Timestamp
this.readTime = readTime;
}

/** Returns {@link Iterator} for underlying {@link List<AggregationResult>}. */
/** Returns {@link Iterator} for underlying List&lt;{@link AggregationResult}&gt;. */
@Override
public Iterator<AggregationResult> iterator() {
return this.aggregationResults.iterator();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ interface TransactionCallable<T> {
* }
* }</pre>
*
* <h4>{@link GqlQuery} example:</h4>
* <p>{@link GqlQuery} example:
*
* <pre>{@code
* GqlQuery<?> selectAllGqlQuery = Query.newGqlQueryBuilder(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
/**
* A Google Cloud Datastore GQL query.
*
* <h3>A usage example:</h3>
* <p>A usage example:
*
* <p>When the type of the results is known the preferred usage would be:
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public static ProjectionEntityQuery.Builder newProjectionEntityQueryBuilder() {
* // Use aggregationResults
* }</pre>
*
* <h4>{@link GqlQuery} example:</h4>
* <p>{@link GqlQuery} example:
*
* <pre>{@code
* GqlQuery<?> selectAllGqlQuery = Query.newGqlQueryBuilder(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* An implementation of a Google Cloud Datastore Query that can be constructed by providing all the
* specific query elements.
*
* <h3>A usage example:</h3>
* <p>A usage example:
*
* <p>A simple query that returns all entities for a specific kind
*
Expand Down

0 comments on commit d4b11bb

Please sign in to comment.