Update comment wording

This commit is contained in:
IvanZosimov 2023-04-06 17:34:41 +02:00
parent a777c35f12
commit 8fd3868fc5

View file

@ -181,7 +181,7 @@ export class CorrettoDistribution extends JavaBase {
}
private convertVersionToSemver(version: string) {
// corretto uses 5 digit semver-like notation e.g. 17.0.6.10.1
// corretto uses semver-like notation e.g. 17.0.6.10.1
const versionArray = version.split('.');
const mainVersion = versionArray.slice(0, 3).join('.');
if (versionArray.length > 3) {