From acc0ccf88ca911072f90569766ac3a8e969aeb30 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Sat, 12 Oct 2024 06:26:46 -0400 Subject: [PATCH] fix: typo --- pkg/healthcheck/reposize.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/healthcheck/reposize.go b/pkg/healthcheck/reposize.go index bb69670..939adb8 100644 --- a/pkg/healthcheck/reposize.go +++ b/pkg/healthcheck/reposize.go @@ -34,7 +34,7 @@ func RepoSize(confSize float64) error { } } if sum > int(confSize*1024) { - return fmt.Errorf("Repository larger than %.1f Mib. Please clean up or contact the teaching team.", confSize) + return fmt.Errorf("Repository larger than %.1f MiB. Please clean up or contact the teaching team.", confSize) } return nil }