Skip to content

Commit 6023264

Browse files
authored
fix: typo in error message (coder#6551)
* fix: typo in error message * fix
1 parent 7f25d31 commit 6023264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/workspacebuilds.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ func (api *API) postWorkspaceBuilds(rw http.ResponseWriter, r *http.Request) {
492492
if buildParameter, found := findWorkspaceBuildParameter(createBuild.RichParameterValues, templateVersionParameter.Name); found {
493493
if !templateVersionParameter.Mutable {
494494
httpapi.Write(ctx, rw, http.StatusBadRequest, codersdk.Response{
495-
Message: fmt.Sprintf("Parameter %q is mutable, so it can't be updated after creating workspace.", templateVersionParameter.Name),
495+
Message: fmt.Sprintf("Parameter %q is not mutable, so it can't be updated after creating a workspace.", templateVersionParameter.Name),
496496
})
497497
return
498498
}

0 commit comments

Comments
 (0)