fix typo 'desciption'

This commit is contained in:
Thomas Rubini 2022-12-14 14:38:15 +01:00
parent 3e275cb188
commit 6b641ca10f
No known key found for this signature in database
GPG Key ID: C7D287C8C1CAC373

View File

@ -22,11 +22,11 @@ public class SearchedPackage {
return description; return description;
} }
public SearchedPackage(String name, String version, String repo, String desciption) { public SearchedPackage(String name, String version, String repo, String description) {
this.name = name; this.name = name;
this.version = version; this.version = version;
this.repo = repo; this.repo = repo;
this.description = desciption; this.description = description;
} }
@Override @Override