From 7b7427962a61b9b5a08672162d8308d87237b584 Mon Sep 17 00:00:00 2001 From: sufuf3 Date: Wed, 25 Jul 2018 15:05:44 +0800 Subject: [PATCH] Fix typo of PodVolume struct comment --- src/entity/pod.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entity/pod.go b/src/entity/pod.go index de10c4aa..9c6d34b0 100644 --- a/src/entity/pod.go +++ b/src/entity/pod.go @@ -35,7 +35,7 @@ type PodNetwork struct { BridgeName string `bson:"bridgeName" json:"bridgeName"` //its from the entity.Network entity } -// PodVolume is the structure for pof volume info +// PodVolume is the structure for pod volume info type PodVolume struct { Name string `bson:"name" json:"name" validate:"required"` MountPath string `bson:"mountPath" json:"mountPath" validate:"required"`