Skip to content

Commit

Permalink
Examples: Fix doc typos in accounts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Theotime Leveque committed Mar 14, 2020
1 parent 4676cb1 commit c6d9620
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 c6d9620

Please sign in to comment.