Skip to content

Commit 5b1258b

Browse files
committed
typo
1 parent d2f4e01 commit 5b1258b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/provisionerjobs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func (r *RootCmd) provisionerJobs() *serpent.Command {
2828
func (r *RootCmd) provisionerJobsList() *serpent.Command {
2929
type provisionerJobRow struct {
3030
codersdk.ProvisionerJob `table:"provisioner_job,recursive_inline"`
31-
OrganizaitonName string `json:"organization_name" table:"organization"`
31+
OrganizationName string `json:"organization_name" table:"organization"`
3232
Queue string `json:"-" table:"queue"`
3333
}
3434

@@ -75,7 +75,7 @@ func (r *RootCmd) provisionerJobsList() *serpent.Command {
7575
for _, job := range jobs {
7676
row := provisionerJobRow{
7777
ProvisionerJob: job,
78-
OrganizaitonName: org.HumanName(),
78+
OrganizationName: org.HumanName(),
7979
}
8080
if job.Status == codersdk.ProvisionerJobPending {
8181
row.Queue = fmt.Sprintf("%d/%d", job.QueuePosition, job.QueueSize)

0 commit comments

Comments
 (0)