Skip to content

Fix typos #3917

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix typos
  • Loading branch information
omahs authored Feb 7, 2025
commit f42fff7a21c2bef4a256cb0dcc15ed5196cd69da
Original file line number Diff line number Diff line change
@@ -49,11 +49,11 @@ type RunnerReplicaSetStatus struct {
// +optional
Replicas *int `json:"replicas"`

// ReadyReplicas is the number of runners that are created and Runnning.
// ReadyReplicas is the number of runners that are created and Running.
ReadyReplicas *int `json:"readyReplicas"`

// AvailableReplicas is the number of runners that are created and Runnning.
// This is currently same as ReadyReplicas but perserved for future use.
// AvailableReplicas is the number of runners that are created and Running.
// This is currently same as ReadyReplicas but preserved for future use.
AvailableReplicas *int `json:"availableReplicas"`
}