x/model: {Valid,Complete,Resolved} -> {IsValid,IsComplete,IsResolved}

This commit is contained in:
Blake Mizerany
2024-04-07 18:17:17 -07:00
parent 6c1c0f9f1a
commit 8b62eaf059
6 changed files with 40 additions and 40 deletions

View File

@@ -83,7 +83,7 @@ func (s *Server) handlePush(w http.ResponseWriter, r *http.Request) error {
}
mp := model.ParseName(pr.Name)
if !mp.Complete() {
if !mp.IsComplete() {
return oweb.Invalid("name", pr.Name, "must be complete")
}