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;
}
/** 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
* 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);