Skip to content

Commit f57ea4c

Browse files
committed
Fix some infelicities in GHWorkflowRun javadoc
1 parent 578fe08 commit f57ea4c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main/java/org/kohsuke/github/GHWorkflowRun.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public URL getHtmlUrl() throws IOException {
8686
/**
8787
* The jobs URL, like https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs
8888
*
89-
* @return the diff url
89+
* @return the jobs url
9090
*/
9191
public URL getJobsUrl() {
9292
return GitHubClient.parseURL(jobsUrl);
@@ -95,7 +95,7 @@ public URL getJobsUrl() {
9595
/**
9696
* The logs URL, like https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs
9797
*
98-
* @return the diff url
98+
* @return the logs url
9999
*/
100100
public URL getLogsUrl() {
101101
return GitHubClient.parseURL(logsUrl);
@@ -104,7 +104,7 @@ public URL getLogsUrl() {
104104
/**
105105
* The check suite URL, like https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374
106106
*
107-
* @return the diff url
107+
* @return the check suite url
108108
*/
109109
public URL getCheckSuiteUrl() {
110110
return GitHubClient.parseURL(checkSuiteUrl);
@@ -113,7 +113,7 @@ public URL getCheckSuiteUrl() {
113113
/**
114114
* The artifacts URL, like https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts
115115
*
116-
* @return the diff url
116+
* @return the artifacts url
117117
*/
118118
public URL getArtifactsUrl() {
119119
return GitHubClient.parseURL(artifactsUrl);
@@ -122,7 +122,7 @@ public URL getArtifactsUrl() {
122122
/**
123123
* The cancel URL, like https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel
124124
*
125-
* @return the diff url
125+
* @return the cancel url
126126
*/
127127
public URL getCancelUrl() {
128128
return GitHubClient.parseURL(cancelUrl);
@@ -131,7 +131,7 @@ public URL getCancelUrl() {
131131
/**
132132
* The rerun URL, like https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun
133133
*
134-
* @return the diff url
134+
* @return the rerun url
135135
*/
136136
public URL getRerunUrl() {
137137
return GitHubClient.parseURL(rerunUrl);
@@ -140,7 +140,7 @@ public URL getRerunUrl() {
140140
/**
141141
* The workflow URL, like https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038
142142
*
143-
* @return the diff url
143+
* @return the workflow url
144144
*/
145145
public URL getWorkflowUrl() {
146146
return GitHubClient.parseURL(workflowUrl);

0 commit comments

Comments
 (0)