Skip to content

Commit 67d5dd5

Browse files
committed
header updates
1 parent e653d31 commit 67d5dd5

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

google-cloud-examples/src/main/java/com/google/cloud/examples/pubsub/snippets/MessageReceiverSnippets.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
/*
1818
* EDITING INSTRUCTIONS
19-
* This file is referenced in Subscriber's javadoc. Any change to this file should be reflected in
20-
* PubSub's javadoc.
19+
* This file is referenced in MessageReceiver's javadoc.
20+
* Any change to this file should be reflected in MessageReceiver's javadoc.
2121
*/
2222

2323
package com.google.cloud.examples.pubsub.snippets;
@@ -28,6 +28,8 @@
2828
import com.google.pubsub.v1.PubsubMessage;
2929
import java.util.concurrent.BlockingQueue;
3030

31+
/** This class contains snippets for the {@link MessageReceiver} interface. */
32+
3133
public class MessageReceiverSnippets {
3234
private final BlockingQueue<PubsubMessage> blockingQueue;
3335

google-cloud-examples/src/main/java/com/google/cloud/examples/pubsub/snippets/PublisherSnippets.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
/*
1818
* EDITING INSTRUCTIONS
19-
* This file is referenced in {@link Publisher} javadoc.
20-
* Any change to this file should be reflected in PubSub's javadoc.
19+
* This file is referenced in Publisher's javadoc. Any change to this file should be reflected in
20+
* Publisher's javadoc.
2121
*/
2222

2323
package com.google.cloud.examples.pubsub.snippets;
@@ -29,7 +29,7 @@
2929
import com.google.pubsub.v1.PubsubMessage;
3030
import com.google.pubsub.v1.TopicName;
3131

32-
/** This class contains a number of snippets for the {@link Publisher} interface. */
32+
/** This class contains snippets for the {@link Publisher} interface. */
3333
public class PublisherSnippets {
3434
private final Publisher publisher;
3535

google-cloud-examples/src/main/java/com/google/cloud/examples/pubsub/snippets/SubscriberSnippets.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/*
1818
* EDITING INSTRUCTIONS
1919
* This file is referenced in Subscriber's javadoc. Any change to this file should be reflected in
20-
* PubSub's javadoc.
20+
* Subscriber's javadoc.
2121
*/
2222

2323
package com.google.cloud.examples.pubsub.snippets;
@@ -28,6 +28,7 @@
2828
import com.google.pubsub.v1.SubscriptionName;
2929
import java.util.concurrent.Executor;
3030

31+
/** This class contains snippets for the {@link Subscriber} interface. */
3132
public class SubscriberSnippets {
3233

3334
private final SubscriptionName subscription;

0 commit comments

Comments
 (0)