Skip to content

Commit

Permalink
atlasexec: fix deprecation comment format (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
masseelch authored Sep 5, 2023
1 parent 24eb934 commit 5cd15f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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
)

0 comments on commit 5cd15f2

Please sign in to comment.