Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix javadoc errors #1126

Merged
merged 6 commits into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ If you are using Maven without the BOM, add this to your dependencies:
If you are using Gradle 5.x or later, add this to your dependencies:

```Groovy
implementation platform('com.google.cloud:libraries-bom:26.17.0')
implementation platform('com.google.cloud:libraries-bom:26.18.0')

implementation 'com.google.cloud:google-cloud-datastore'
```
Expand Down
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