diff --git a/java/google/registry/model/EppResourceUtils.java b/java/google/registry/model/EppResourceUtils.java index e1e5acf2e..2be794c1a 100644 --- a/java/google/registry/model/EppResourceUtils.java +++ b/java/google/registry/model/EppResourceUtils.java @@ -242,14 +242,14 @@ public final class EppResourceUtils { * {@code timestamp} be set to midnight. Otherwise you must take into consideration that under * certain circumstances, a resource might be restored to a revision on the previous day, even if * there were revisions made earlier on the same date as {@code timestamp}; however, a resource - * will never be restored to a revision occuring after {@code timestamp}. This behavior is due to + * will never be restored to a revision occurring after {@code timestamp}. This behavior is due to * the way {@link google.registry.model.translators.CommitLogRevisionsTranslatorFactory * CommitLogRevisionsTranslatorFactory} manages the {@link EppResource#revisions} field. Please * note however that the creation and deletion times of a resource are granular to the * millisecond. * * @return an asynchronous operation returning resource at {@code timestamp} or {@code null} if - * if resource is deleted or not yet created + * resource is deleted or not yet created */ public static Result loadAtPointInTime(final T resource, final DateTime timestamp) { diff --git a/java/google/registry/tools/GenerateZoneFilesCommand.java b/java/google/registry/tools/GenerateZoneFilesCommand.java index 76c12ec06..1e2089c6c 100644 --- a/java/google/registry/tools/GenerateZoneFilesCommand.java +++ b/java/google/registry/tools/GenerateZoneFilesCommand.java @@ -33,7 +33,7 @@ import org.joda.time.DateTime; final class GenerateZoneFilesCommand implements ServerSideCommand { @Parameter( - description = "A comma-separated list of TLD to generate zone files for", + description = "A comma-separated list of TLDs to generate zone files for", required = true) private List mainParameters;