From b6880c60d38e19fec32655dedcd0a45fd9cb4037 Mon Sep 17 00:00:00 2001 From: yanggang Date: Thu, 23 Feb 2023 16:41:38 +0800 Subject: [PATCH] logging: Correct the code notes Fix wrong notes for func GetSandboxesStoragePathRust() Fixes: #6394 Signed-off-by: yanggang --- src/runtime/pkg/containerd-shim-v2/shim_management.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/pkg/containerd-shim-v2/shim_management.go b/src/runtime/pkg/containerd-shim-v2/shim_management.go index 74c7509187..f9c31b8b27 100644 --- a/src/runtime/pkg/containerd-shim-v2/shim_management.go +++ b/src/runtime/pkg/containerd-shim-v2/shim_management.go @@ -307,7 +307,7 @@ func GetSandboxesStoragePath() string { return "/run/vc/sbs" } -// GetSandboxesStoragePath returns the storage path where sandboxes info are stored in runtime-rs +// GetSandboxesStoragePathRust returns the storage path where sandboxes info are stored in runtime-rs func GetSandboxesStoragePathRust() string { return "/run/kata" }