{Change,Revision}Event: Fix typo in Javadoc

Change-Id: I0413cdc6dca63e4aae615809296d3186e306983a
This commit is contained in:
David Pursehouse
2016-06-23 09:49:48 +09:00
parent 5c3c4c8bb3
commit 9c3d23bb93
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ package com.google.gerrit.extensions.events;
import com.google.gerrit.extensions.common.ChangeInfo;
/** Interface to be extendend by Events with a Change. */
/** Interface to be extended by Events with a Change. */
public interface ChangeEvent {
ChangeInfo getChange();
}

View File

@@ -16,7 +16,7 @@ package com.google.gerrit.extensions.events;
import com.google.gerrit.extensions.common.RevisionInfo;
/** Interface to be extendend by Events with a Revision. */
/** Interface to be extended by Events with a Revision. */
public interface RevisionEvent extends ChangeEvent {
RevisionInfo getRevision();
}