Skip to content

Commit

Permalink
Merge pull request #643 from thylong/docs/fix-typos
Browse files Browse the repository at this point in the history
Examples: Fix doc typos in accounts.
  • Loading branch information
sdghchj committed Mar 15, 2020
2 parents 4676cb1 + c6d9620 commit 8e8a052
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions example/celler/controller/accounts.go
Expand Up @@ -11,7 +11,7 @@ import (
)

// ShowAccount godoc
// @Summary Show a account
// @Summary Show an account
// @Description get string by ID
// @Tags accounts
// @Accept json
Expand Down Expand Up @@ -60,7 +60,7 @@ func (c *Controller) ListAccounts(ctx *gin.Context) {
}

// AddAccount godoc
// @Summary Add a account
// @Summary Add an account
// @Description add by json account
// @Tags accounts
// @Accept json
Expand Down Expand Up @@ -94,7 +94,7 @@ func (c *Controller) AddAccount(ctx *gin.Context) {
}

// UpdateAccount godoc
// @Summary Update a account
// @Summary Update an account
// @Description Update by json account
// @Tags accounts
// @Accept json
Expand Down Expand Up @@ -131,7 +131,7 @@ func (c *Controller) UpdateAccount(ctx *gin.Context) {
}

// DeleteAccount godoc
// @Summary Update a account
// @Summary Delete an account
// @Description Delete by account ID
// @Tags accounts
// @Accept json
Expand Down

0 comments on commit 8e8a052

Please sign in to comment.