diff --git a/src/utils.ts b/src/utils.ts index 157dd20..1ec4550 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -222,7 +222,7 @@ function extractValue(obj: any, keys: string[]): string | undefined { * If none is present, returns an empty list. */ export function getVersionInputFromTomlFile(versionFile: string): string[] { - core.debug(`Trying to resolve version form ${versionFile}`); + core.debug(`Trying to resolve version from ${versionFile}`); const pyprojectFile = fs.readFileSync(versionFile, 'utf8'); const pyprojectConfig = toml.parse(pyprojectFile); @@ -267,7 +267,7 @@ export function getVersionInputFromTomlFile(versionFile: string): string[] { * - Trims whitespace. */ export function getVersionsInputFromPlainFile(versionFile: string): string[] { - core.debug(`Trying to resolve versions form ${versionFile}`); + core.debug(`Trying to resolve versions from ${versionFile}`); const content = fs.readFileSync(versionFile, 'utf8').trim(); const lines = content.split(/\r\n|\r|\n/); const versions = lines