Fix some typos

Signed-off-by: ruicao <ruicao@alauda.io>
This commit is contained in:
ruicao 2018-09-07 18:13:53 +08:00
parent 642075f42c
commit d1f36d46c9
3 changed files with 3 additions and 3 deletions

View file

@ -39,7 +39,7 @@ Content-Type: application/x-www-form-urlencoded
<dd> <dd>
(REQUIRED) Type of grant used to get token. When getting a refresh token (REQUIRED) Type of grant used to get token. When getting a refresh token
using credentials this type should be set to "password" and have the using credentials this type should be set to "password" and have the
accompanying username and password paramters. Type "authorization_code" accompanying username and password parameters. Type "authorization_code"
is reserved for future use for authenticating to an authorization server is reserved for future use for authenticating to an authorization server
without having to send credentials directly from the client. When without having to send credentials directly from the client. When
requesting an access token with a refresh token this should be set to requesting an access token with a refresh token this should be set to

View file

@ -52,7 +52,7 @@ type Manifest struct {
Annotations map[string]string `json:"annotations,omitempty"` Annotations map[string]string `json:"annotations,omitempty"`
} }
// References returnes the descriptors of this manifests references. // References returns the descriptors of this manifests references.
func (m Manifest) References() []distribution.Descriptor { func (m Manifest) References() []distribution.Descriptor {
references := make([]distribution.Descriptor, 0, 1+len(m.Layers)) references := make([]distribution.Descriptor, 0, 1+len(m.Layers))
references = append(references, m.Config) references = append(references, m.Config)

View file

@ -138,7 +138,7 @@ func (sm *SignedManifest) UnmarshalJSON(b []byte) error {
return nil return nil
} }
// References returnes the descriptors of this manifests references // References returns the descriptors of this manifests references
func (sm SignedManifest) References() []distribution.Descriptor { func (sm SignedManifest) References() []distribution.Descriptor {
dependencies := make([]distribution.Descriptor, len(sm.FSLayers)) dependencies := make([]distribution.Descriptor, len(sm.FSLayers))
for i, fsLayer := range sm.FSLayers { for i, fsLayer := range sm.FSLayers {