Skip to content

Commit

Permalink
fix-grammar-mistake
Browse files Browse the repository at this point in the history
Signed-off-by: chentanjun <[email protected]>
  • Loading branch information
tanjunchen committed Aug 28, 2019
1 parent 3096178 commit 92a5b08
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion containers/containers.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ type Container struct {
// This property is required and immutable.
Runtime RuntimeInfo

// Spec should carry the the runtime specification used to implement the
// Spec should carry the runtime specification used to implement the
// container.
//
// This field is required but mutable.
Expand Down
2 changes: 1 addition & 1 deletion docs/namespaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Note that currently only these two labels are used to configure the defaults and

If we need to inspect containers, images, or other resources in various namespaces the `ctr` tool allows you to do this.
Simply set the `--namespace,-n` flag on `ctr` to change the namespace. If you do not provide a namespace, `ctr` client commands
will all use the the default namespace, which is simply named "`default`".
will all use the default namespace, which is simply named "`default`".

```bash
> sudo ctr -n docker tasks
Expand Down
2 changes: 1 addition & 1 deletion log/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var (
// messages.
G = GetLogger

// L is an alias for the the standard logger.
// L is an alias for the standard logger.
L = logrus.NewEntry(logrus.StandardLogger())
)

Expand Down
4 changes: 2 additions & 2 deletions oci/spec_opts.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func WithDefaultSpecForPlatform(platform string) SpecOpts {
}
}

// WithSpecFromBytes loads the the spec from the provided byte slice.
// WithSpecFromBytes loads the spec from the provided byte slice.
func WithSpecFromBytes(p []byte) SpecOpts {
return func(_ context.Context, _ Client, _ *containers.Container, s *Spec) error {
*s = Spec{} // make sure spec is cleared.
Expand Down Expand Up @@ -628,7 +628,7 @@ func WithUserID(uid uint32) SpecOpts {
}

// WithUsername sets the correct UID and GID for the container
// based on the the image's /etc/passwd contents. If /etc/passwd
// based on the image's /etc/passwd contents. If /etc/passwd
// does not exist, or the username is not found in /etc/passwd,
// it returns error.
func WithUsername(username string) SpecOpts {
Expand Down
2 changes: 1 addition & 1 deletion platforms/platforms.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ type Matcher interface {
// specification. The returned matcher only looks for equality based on os,
// architecture and variant.
//
// One may implement their own matcher if this doesn't provide the the required
// One may implement their own matcher if this doesn't provide the required
// functionality.
//
// Applications should opt to use `Match` over directly parsing specifiers.
Expand Down
2 changes: 1 addition & 1 deletion reports/2017-02-10.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ much smaller interface!
## Bundles Bundles Bundles

We spend time talking with people implementing Windows support as well as a few other users.
One the the major issues with our current approach was that bundles were a central part of our architecture.
One the major issues with our current approach was that bundles were a central part of our architecture.
The content and storage subsystems would produce bundles and the execution subsystem would consume them.
However, with a bundle being on the filesystem, having this concept does not work as smoothly on Windows
as it would for Unix platforms.
Expand Down

0 comments on commit 92a5b08

Please sign in to comment.