diff --git a/checks/raw/shell_download_validate.go b/checks/raw/shell_download_validate.go index 62b695b8fa57..0a20bc58fab0 100644 --- a/checks/raw/shell_download_validate.go +++ b/checks/raw/shell_download_validate.go @@ -698,7 +698,7 @@ func isChocoUnpinnedDownload(cmd []string) bool { } func isUnpinnedNugetCliInstall(cmd []string) bool { - // looking for command of type nuget install ... + // looking for command of type nuget install. if len(cmd) < 2 { return false } @@ -713,7 +713,7 @@ func isUnpinnedNugetCliInstall(cmd []string) bool { return false } - // Asseume installing a project with PackageReference (with versions) + // Assume installing a project with PackageReference (with versions) // or packages.config at the root of command if len(cmd) == 2 { return false