@@ -291,7 +291,7 @@ public Builder toBuilder() {
291291 * letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
292292 * ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
293293 * ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
294- * string {@code goog}
294+ * string {@code goog}.
295295 */
296296 public static SubscriptionInfo of (String topic , String name ) {
297297 return builder (topic , name ).build ();
@@ -307,7 +307,7 @@ public static SubscriptionInfo of(String topic, String name) {
307307 * letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
308308 * ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
309309 * ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
310- * string {@code goog}
310+ * string {@code goog}.
311311 */
312312 public static SubscriptionInfo of (TopicId topic , String name ) {
313313 return builder (topic , name ).build ();
@@ -323,7 +323,7 @@ public static SubscriptionInfo of(TopicId topic, String name) {
323323 * letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
324324 * ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
325325 * ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
326- * string {@code goog}
326+ * string {@code goog}.
327327 * @param endpoint a URL locating the endpoint to which messages should be pushed. For example,
328328 * an endpoint might use {@code https://example.com/push}.
329329 */
@@ -341,7 +341,7 @@ public static SubscriptionInfo of(String topic, String name, String endpoint) {
341341 * letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
342342 * ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
343343 * ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
344- * string {@code goog}
344+ * string {@code goog}.
345345 * @param endpoint a URL locating the endpoint to which messages should be pushed. For example,
346346 * an endpoint might use {@code https://example.com/push}.
347347 */
@@ -359,7 +359,7 @@ public static SubscriptionInfo of(TopicId topic, String name, String endpoint) {
359359 * letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
360360 * ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
361361 * ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
362- * string {@code goog}
362+ * string {@code goog}.
363363 */
364364 public static Builder builder (String topic , String name ) {
365365 return builder (TopicId .of (topic ), name );
@@ -375,7 +375,7 @@ public static Builder builder(String topic, String name) {
375375 * letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
376376 * ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
377377 * ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
378- * string {@code goog}
378+ * string {@code goog}.
379379 */
380380 public static Builder builder (TopicId topic , String name ) {
381381 return new BuilderImpl (topic , name );
0 commit comments