From cc11653446841a8aba481b218a579a00b5bf4e25 Mon Sep 17 00:00:00 2001 From: Corey Goldfeder Date: Wed, 18 May 2016 08:13:56 -0700 Subject: [PATCH] Comment typo of the day ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=122632247 --- java/google/registry/model/domain/GracePeriod.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/java/google/registry/model/domain/GracePeriod.java b/java/google/registry/model/domain/GracePeriod.java index a1a1e132c..faa535096 100644 --- a/java/google/registry/model/domain/GracePeriod.java +++ b/java/google/registry/model/domain/GracePeriod.java @@ -119,7 +119,8 @@ public class GracePeriod extends ImmutableObject { return instance; } - /** Create a GracePeriod for an (optional) OneTime billing event. + /** + * Creates a GracePeriod for an (optional) OneTime billing event. * *

Normal callers should always use {@link #forBillingEvent} instead, assuming they do not * need to avoid loading the BillingEvent from datastore. This method should typically be @@ -133,7 +134,7 @@ public class GracePeriod extends ImmutableObject { return createInternal(type, expirationTime, clientId, billingEventOneTime, null); } - /** Create a GracePeriod for a Recurring billing event. */ + /** Creates a GracePeriod for a Recurring billing event. */ public static GracePeriod createForRecurring( GracePeriodStatus type, DateTime expirationTime, @@ -143,7 +144,7 @@ public class GracePeriod extends ImmutableObject { return createInternal(type, expirationTime, clientId, null, billingEventRecurring); } - /** Create a GracePeriod with no billing event. */ + /** Creates a GracePeriod with no billing event. */ public static GracePeriod createWithoutBillingEvent( GracePeriodStatus type, DateTime expirationTime, String clientId) { return createInternal(type, expirationTime, clientId, null, null);