Comment typo of the day

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=122632247
This commit is contained in:
Corey Goldfeder 2016-05-18 08:13:56 -07:00 committed by Justine Tunney
parent 24c11dfdca
commit cc11653446

View file

@ -119,7 +119,8 @@ public class GracePeriod extends ImmutableObject {
return instance; return instance;
} }
/** Create a GracePeriod for an (optional) OneTime billing event. /**
* Creates a GracePeriod for an (optional) OneTime billing event.
* *
* <p>Normal callers should always use {@link #forBillingEvent} instead, assuming they do not * <p>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 * 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); 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( public static GracePeriod createForRecurring(
GracePeriodStatus type, GracePeriodStatus type,
DateTime expirationTime, DateTime expirationTime,
@ -143,7 +144,7 @@ public class GracePeriod extends ImmutableObject {
return createInternal(type, expirationTime, clientId, null, billingEventRecurring); 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( public static GracePeriod createWithoutBillingEvent(
GracePeriodStatus type, DateTime expirationTime, String clientId) { GracePeriodStatus type, DateTime expirationTime, String clientId) {
return createInternal(type, expirationTime, clientId, null, null); return createInternal(type, expirationTime, clientId, null, null);