Skip to content
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

fix: improved the documentation description #1147

Merged
merged 1 commit into from
Jun 6, 2024
Merged
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
4 changes: 3 additions & 1 deletion pkg/domain/constant/source.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ var (
)

const (
// SourceProviderTypeGit represents git source provider type.
SourceProviderTypeGit SourceProviderType = "git"

// SourceProviderTypeGithub represents github source provider type.
SourceProviderTypeGit SourceProviderType = "git"
SourceProviderTypeGithub SourceProviderType = "github"

// SourceProviderTypeOCI represents oci source provider type.
Expand Down
6 changes: 3 additions & 3 deletions pkg/domain/constant/stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ type StackState string

// These constants represent the possible states of a stack.
const (
// The stack has not been synced with the remote runtime.
// StackStateUnSynced represents state of stack has not been synced with the remote runtime.
StackStateUnSynced StackState = "UnSynced"
// The stack is synced with the remote runtime.
// StackStateSynced represents state of stack is synced with the remote runtime.
StackStateSynced StackState = "Synced"
// The stack has out of sync from the remote runtime.
// StackStateOutOfSync represents state of stack has out of sync from the remote runtime.
StackStateOutOfSync StackState = "OutOfSync"
)

Expand Down
Loading