Skip to content

Commit

Permalink
Fix: RepoCommandLink's text is wrong
Browse files Browse the repository at this point in the history
The title of the "repo download" link was mistakenly set to "checkout"
during refactoring in commit cbc629f.

Change it to the correct "repo download" title.

Bug: Issue 2093
Change-Id: I4c30d0fedf56942f741edbbfaa7505052e5e370c
  • Loading branch information
Bruce Zu authored and dpursehouse committed Aug 29, 2013
1 parent 0fe5ccc commit 4cc9975
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -86,7 +86,7 @@ public class RepoCommandLink extends DownloadCommandLink {
String projectName;
String ref;
public RepoCommandLink(String project, String ref) {
super(DownloadCommand.REPO_DOWNLOAD, "checkout");
super(DownloadCommand.REPO_DOWNLOAD, "repo download");
this.projectName = project;
this.ref = ref;
}
Expand Down

0 comments on commit 4cc9975

Please sign in to comment.