From 785f120c312d3de204808b580817d356a19b21d8 Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Fri, 6 May 2022 13:22:34 +0200 Subject: [PATCH] Fix form -> from in comment Signed-off-by: Evan Lezar --- internal/config/image/cuda_image.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/image/cuda_image.go b/internal/config/image/cuda_image.go index 2e986773..c92b75a5 100644 --- a/internal/config/image/cuda_image.go +++ b/internal/config/image/cuda_image.go @@ -72,7 +72,7 @@ func (i CUDA) IsLegacy() bool { return len(legacyCudaVersion) > 0 && len(cudaRequire) == 0 } -// GetRequirements returns the requirements fomr all NVIDIA_REQUIRE_ environment +// GetRequirements returns the requirements from all NVIDIA_REQUIRE_ environment // variables. func (i CUDA) GetRequirements() ([]string, error) { // TODO: We need not process this if disable require is set, but this will be done