typo fix in name

This commit is contained in:
Grahame Grieve 2022-11-15 18:13:45 +11:00
parent 0f3e8be43b
commit 24656a20fa
2 changed files with 6 additions and 1 deletions

View File

@ -1196,5 +1196,10 @@ public class NpmPackage {
return fromPackage(new ByteArrayInputStream(res.getContent()));
}
@Override
public String toString() {
return "NpmPackage "+name()+"#"+version()+" [path=" + path + "]";
}
}