Skip to content

Commit 015e564

Browse files
authored
s/@see/@link/g (#2590)
Some `@see` annotations should instead be `@link`; maven's javadoc plugin fails if `@see` is used incorrectly.
1 parent b73fc8b commit 015e564

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

google-cloud-firestore/src/main/java/com/google/cloud/firestore/Firestore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ <T> ApiFuture<T> runTransaction(
8585
ApiFuture<List<DocumentSnapshot>> getAll(final DocumentReference... documentReferences);
8686

8787
/**
88-
* Gets a Firestore {@see WriteBatch} instance that can be used to combine multiple writes.
88+
* Gets a Firestore {@link WriteBatch} instance that can be used to combine multiple writes.
8989
*
9090
* @return A WriteBatch that operates on this Firestore client.
9191
*/

google-cloud-firestore/src/main/java/com/google/cloud/firestore/UpdateBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
import javax.annotation.Nullable;
3737

3838
/**
39-
* Abstract class that collects and bundles all write operations for {@see Transaction} and {@see
40-
* WriteBatch}.
39+
* Abstract class that collects and bundles all write operations for {@link Transaction} and
40+
* {@link WriteBatch}.
4141
*/
4242
abstract class UpdateBuilder<T extends UpdateBuilder> {
4343

0 commit comments

Comments
 (0)