From 04e00cd6004f2d15419cc64d4d67efef6add735a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kry=C5=A1tof=20Korb?= Date: Thu, 4 Jan 2024 00:45:19 +0100 Subject: [PATCH] Fix typos --- src/utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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