Skip to content

Commit 0727c87

Browse files
committed
Use plural form on seq
1 parent b5240c5 commit 0727c87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/com/codacy/client/bitbucket/v2/Repository.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import play.api.libs.json._
88
case class Repository(name: String, full_name: String, description: String, scm: String,
99
created_on: LocalDateTime, updated_on: LocalDateTime, owner: String, size: Long,
1010
has_issues: Boolean, is_private: Boolean, language: String,
11-
url: Seq[RepositoryUrl]) {
11+
urls: Seq[RepositoryUrl]) {
1212

1313
val sshUrl: String = s"ssh://$scm@bitbucket.org/$owner/$name"
1414
val httpsUrl: String = s"https://$owner@bitbucket.org/$owner/$name"

0 commit comments

Comments
 (0)