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

atlasexec: fix deprecation comment format #14

Merged
merged 1 commit into from
Sep 5, 2023
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
8 changes: 4 additions & 4 deletions atlasexec/atlas.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ type (
)

type (
// @deprecated use MigrateApplyParams instead.
// Deprecated: MigrateApplyParams instead.
ApplyParams = MigrateApplyParams
// @deprecated use MigrateStatusParams instead.
// Deprecated: use MigrateStatusParams instead.
StatusParams = MigrateStatusParams
// @deprecated use MigrateLintParams instead.
// Deprecated: use MigrateLintParams instead.
LintParams = MigrateLintParams
)

Expand Down Expand Up @@ -365,7 +365,7 @@ func (c *Client) runCommand(ctx context.Context, args []string) (io.Reader, erro
return &stdout, nil
}

// LatestVersion returns the latest version of the migrations directory.
// LatestVersion returns the latest version of the migration directory.
func (r MigrateStatus) LatestVersion() string {
if l := len(r.Available); l > 0 {
return r.Available[l-1].Version
Expand Down
4 changes: 2 additions & 2 deletions atlasexec/atlas_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ type (
)

type (
// @deprecated use MigrateStatus instead
// Deprecated: use MigrateStatus instead
StatusReport = MigrateStatus
// @deprecated use MigrateApply instead
// Deprecated: use MigrateApply instead
ApplyReport = MigrateApply
)