Merge pull request #33188 from allencloud/fix-nits-in-function-comments

fix typos in function comments
This commit is contained in:
Doug Davis 2017-05-14 08:17:28 -04:00 committed by GitHub
commit 5072b22c5f
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ import (
"golang.org/x/net/context"
)
// ConfigUpdate attempts to updates a Config
// ConfigUpdate attempts to update a Config
func (cli *Client) ConfigUpdate(ctx context.Context, id string, version swarm.Version, config swarm.ConfigSpec) error {
query := url.Values{}
query.Set("version", strconv.FormatUint(version.Index, 10))

View file

@ -8,7 +8,7 @@ import (
"golang.org/x/net/context"
)
// SecretUpdate attempts to updates a Secret
// SecretUpdate attempts to update a Secret
func (cli *Client) SecretUpdate(ctx context.Context, id string, version swarm.Version, secret swarm.SecretSpec) error {
query := url.Values{}
query.Set("version", strconv.FormatUint(version.Index, 10))