Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ type ListJobInvocationsOptions struct {
Page int `url:"page,omitempty"`
// For paginated result sets, the number of results to include per page.
PerPage int `url:"per_page,omitempty"`
// DeploymentID is an optional paramerter. This is used to filter job invocations to a specific deployment.
// DeploymentID is an optional parameter. This is used to filter job invocations to a specific deployment.
DeploymentID string `url:"deployment_id,omitempty"`
// JobNames is an optional parameter. This is used to filter job invocations by job names.
JobNames []string `url:"job_names,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion databases.go
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ type ListDatabaseEvents struct {
Events []DatabaseEvent `json:"events"`
}

// DatbaseEvent contains the information about a Datbase event.
// DatabaseEvent contains the information about a Database event.
type DatabaseEvent struct {
ID string `json:"id"`
ServiceName string `json:"cluster_name"`
Expand Down
2 changes: 1 addition & 1 deletion registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ func TestRegistries_Get(t *testing.T) {
Region: testRegion,
}

// We return `read_only` and `type` (only for multi-regsitry) -- check if we need to do this or not -- older tests don't add `read_only` to the response
// We return `read_only` and `type` (only for multi-registry) -- check if we need to do this or not -- older tests don't add `read_only` to the response
getResponseJSON := `
{
"registry": {
Expand Down