fix: typo
All checks were successful
build / build (push) Successful in 1m8s
build / build (pull_request) Successful in 1m7s
build / trigger-build-image (push) Has been skipped
build / trigger-build-image (pull_request) Has been skipped

This commit is contained in:
张泊明518370910136 2024-10-12 06:26:46 -04:00
parent aa2969a82f
commit acc0ccf88c
GPG Key ID: D47306D7062CDA9D

View File

@ -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
}