web: Rename Version.build_ident to Version.buildIdent

This commit is contained in:
Nathan Adams 2020-11-13 22:45:28 +01:00 committed by Mike Welsh
parent e5cd299009
commit 548fe6d172
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ export class Version {
private readonly minor: number;
private readonly patch: number;
private readonly prIdent: string[] | null;
private readonly build_ident: string[] | null;
private readonly buildIdent: string[] | null;
/**
* Construct a Version from specific components.
@ -30,7 +30,7 @@ export class Version {
this.minor = minor;
this.patch = patch;
this.prIdent = pr_ident;
this.build_ident = build_ident;
this.buildIdent = build_ident;
}
/**