Skip to content

Commit

Permalink
Fixed some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
phonkee committed Jul 1, 2015
1 parent bb25f03 commit 7208dc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ type BasicAuthorizer struct {
}

type BasicAuthorizerConfig struct {
Username string `json:"username`
Username string `json:"username"`
Password string `json:"password"`
}

Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,5 +215,5 @@ type QueryParamsConfigParam struct {
Default string `json:"default"`

// compiled regexp
compiled *regexp.Regexp `json:"-"`
compiled *regexp.Regexp
}
4 changes: 2 additions & 2 deletions tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (s *ShellTaskConfig) Validate() (err error) {
}

type ShellTaskConfigCommand struct {
Command string `json:"command`
Command string `json:"command"`
Chdir string `json:"chdir"`
Format string `json:"format"`
ReturnCommand bool `json:"return_command"`
Expand Down Expand Up @@ -244,7 +244,7 @@ type HttpTaskConfigURL struct {
Method string `json:"method"`
PostBody bool `json:"post_body"`
Format string `json:"format"`
ReturnHeaders bool `json:"return_headers`
ReturnHeaders bool `json:"return_headers"`
}

/*
Expand Down

0 comments on commit 7208dc5

Please sign in to comment.