From 7fd6d5e2be5b91095247f382318453def2912e2f Mon Sep 17 00:00:00 2001 From: Michael Wan Date: Sun, 22 Apr 2018 04:27:17 -0400 Subject: [PATCH] fix words misspell Signed-off-by: Michael Wan --- archive/tar_test.go | 2 +- client.go | 2 +- container_linux_test.go | 4 ++-- defaults/doc.go | 2 +- diff/windows/windows.go | 2 +- filters/filter.go | 4 ++-- gc/scheduler/scheduler.go | 2 +- images/image.go | 2 +- linux/runtime.go | 2 +- plugin/plugin.go | 2 +- process.go | 2 +- services/diff/local.go | 2 +- snapshots/storage/metastore_test.go | 2 +- snapshots/testsuite/testsuite.go | 6 +++--- 14 files changed, 18 insertions(+), 18 deletions(-) diff --git a/archive/tar_test.go b/archive/tar_test.go index c94c9d379e07..a7391adaedff 100644 --- a/archive/tar_test.go +++ b/archive/tar_test.go @@ -659,7 +659,7 @@ func TestApplyTar(t *testing.T) { return err } if _, err := os.Stat(p); err != nil { - return errors.Wrapf(err, "failure checking existance for %v", d) + return errors.Wrapf(err, "failure checking existence for %v", d) } } return nil diff --git a/client.go b/client.go index c15bf828dd9b..c8e0b4a6bf9a 100644 --- a/client.go +++ b/client.go @@ -320,7 +320,7 @@ func (c *Client) Pull(ctx context.Context, ref string, opts ...RemoteOpt) (Image childrenHandler := images.ChildrenHandler(store) // Set any children labels for that content childrenHandler = images.SetChildrenLabels(store, childrenHandler) - // Filter childen by platforms + // Filter children by platforms childrenHandler = images.FilterPlatforms(childrenHandler, pullCtx.Platforms...) handler = images.Handlers(append(pullCtx.BaseHandlers, diff --git a/container_linux_test.go b/container_linux_test.go index f1bf853b7e85..d386592ad6ff 100644 --- a/container_linux_test.go +++ b/container_linux_test.go @@ -375,12 +375,12 @@ type directIO struct { cio.DirectIO } -// ioCreate returns IO avaliable for use with task creation +// ioCreate returns IO available for use with task creation func (f *directIO) IOCreate(id string) (cio.IO, error) { return f, nil } -// ioAttach returns IO avaliable for use with task attachment +// ioAttach returns IO available for use with task attachment func (f *directIO) IOAttach(set *cio.FIFOSet) (cio.IO, error) { return f, nil } diff --git a/defaults/doc.go b/defaults/doc.go index 274d504a38b9..6da863ce2e89 100644 --- a/defaults/doc.go +++ b/defaults/doc.go @@ -14,6 +14,6 @@ limitations under the License. */ -// Package defaults provides several common defaults for interacting wtih +// Package defaults provides several common defaults for interacting with // containerd. These can be used on the client-side or server-side. package defaults diff --git a/diff/windows/windows.go b/diff/windows/windows.go index 330a9e1b9579..d43948276723 100644 --- a/diff/windows/windows.go +++ b/diff/windows/windows.go @@ -61,7 +61,7 @@ func init() { }) } -// CompareApplier handles both comparision and +// CompareApplier handles both comparison and // application of layer diffs. type CompareApplier interface { diff.Applier diff --git a/filters/filter.go b/filters/filter.go index 30debadc966f..cf09d8d9e4fd 100644 --- a/filters/filter.go +++ b/filters/filter.go @@ -92,7 +92,7 @@ var Always FilterFunc = func(adaptor Adaptor) bool { return true } -// Any allows multiple filters to be matched aginst the object +// Any allows multiple filters to be matched against the object type Any []Filter // Match returns true if any of the provided filters are true @@ -106,7 +106,7 @@ func (m Any) Match(adaptor Adaptor) bool { return false } -// All allows multiple filters to be matched aginst the object +// All allows multiple filters to be matched against the object type All []Filter // Match only returns true if all filters match the object diff --git a/gc/scheduler/scheduler.go b/gc/scheduler/scheduler.go index 48c8e514b50d..f5890fb74da8 100644 --- a/gc/scheduler/scheduler.go +++ b/gc/scheduler/scheduler.go @@ -315,7 +315,7 @@ func (s *gcScheduler) run(ctx context.Context) { // Reschedule garbage collection for same duration + 1 second schedC, nextCollection = schedule(nextCollection.Sub(*lastCollection) + time.Second) - // Update last collection time even though failure occured + // Update last collection time even though failure occurred lastCollection = &last for _, w := range s.waiters { diff --git a/images/image.go b/images/image.go index 17aedc550316..d1a08135a283 100644 --- a/images/image.go +++ b/images/image.go @@ -279,7 +279,7 @@ func Check(ctx context.Context, provider content.Provider, image ocispec.Descrip // TODO(stevvooe): It is possible that referenced conponents could have // children, but this is rare. For now, we ignore this and only verify - // that manfiest components are present. + // that manifest components are present. required = append([]ocispec.Descriptor{mfst.Config}, mfst.Layers...) for _, desc := range required { diff --git a/linux/runtime.go b/linux/runtime.go index 2bf697831889..6cc673173657 100644 --- a/linux/runtime.go +++ b/linux/runtime.go @@ -200,7 +200,7 @@ func (r *Runtime) Create(ctx context.Context, id string, opts runtime.CreateOpts log.G(ctx).WithField("id", id).Info("shim reaped") t, err := r.tasks.Get(ctx, id) if err != nil { - // Task was never started or was already sucessfully deleted + // Task was never started or was already successfully deleted return } lc := t.(*Task) diff --git a/plugin/plugin.go b/plugin/plugin.go index 584547aff5a0..ed53daeba69a 100644 --- a/plugin/plugin.go +++ b/plugin/plugin.go @@ -89,7 +89,7 @@ type Registration struct { // InitFn is called when initializing a plugin. The registration and // context are passed in. The init function may modify the registration to - // add exports, capabilites and platform support declarations. + // add exports, capabilities and platform support declarations. InitFn func(*InitContext) (interface{}, error) } diff --git a/process.go b/process.go index fb1fcdcd8132..ff7d838cde05 100644 --- a/process.go +++ b/process.go @@ -81,7 +81,7 @@ func (s ExitStatus) ExitTime() time.Time { return s.exitedAt } -// Error returns the error, if any, that occured while waiting for the +// Error returns the error, if any, that occurred while waiting for the // process. func (s ExitStatus) Error() error { return s.err diff --git a/services/diff/local.go b/services/diff/local.go index 0335b140928b..0b90dc2715ca 100644 --- a/services/diff/local.go +++ b/services/diff/local.go @@ -34,7 +34,7 @@ type config struct { // Order is the order of preference in which to try diff algorithms, the // first differ which is supported is used. // Note when multiple differs may be supported, this order will be - // respected for which is choosen. Each differ should return the same + // respected for which is chosen. Each differ should return the same // correct output, allowing any ordering to be used to prefer // more optimimal implementations. Order []string `toml:"default"` diff --git a/snapshots/storage/metastore_test.go b/snapshots/storage/metastore_test.go index 004bbe53ae5f..a1b287e7b7c7 100644 --- a/snapshots/storage/metastore_test.go +++ b/snapshots/storage/metastore_test.go @@ -594,7 +594,7 @@ func testParents(ctx context.Context, t *testing.T, ms *MetaStore) { parents []string ) if info.Kind == snapshots.KindCommitted { - // When commited, create view and resolve from view + // When committed, create view and resolve from view nid := fmt.Sprintf("test-%s-%d", tc.Name, i) s, err := CreateSnapshot(ctx, snapshots.KindView, nid, name) if err != nil { diff --git a/snapshots/testsuite/testsuite.go b/snapshots/testsuite/testsuite.go index 22830921d7a1..65ea93a07f19 100644 --- a/snapshots/testsuite/testsuite.go +++ b/snapshots/testsuite/testsuite.go @@ -543,7 +543,7 @@ func checkRemoveIntermediateSnapshot(ctx context.Context, t *testing.T, snapshot // baseTestSnapshots creates a base set of snapshots for tests, each snapshot is empty // Tests snapshots: // c1 - committed snapshot, no parent -// c2 - commited snapshot, c1 is parent +// c2 - committed snapshot, c1 is parent // a1 - active snapshot, c2 is parent // a1 - active snapshot, no parent // v1 - view snapshot, v1 is parent @@ -757,7 +757,7 @@ func checkRemove(ctx context.Context, t *testing.T, snapshotter snapshots.Snapsh if err := snapshotter.Remove(ctx, "committed-1"); err != nil { t.Fatal(err) } - if err := snapshotter.Commit(ctx, "commited-1", "reuse-1", opt); err != nil { + if err := snapshotter.Commit(ctx, "committed-1", "reuse-1", opt); err != nil { t.Fatal(err) } } @@ -769,7 +769,7 @@ func checkSnapshotterViewReadonly(ctx context.Context, t *testing.T, snapshotter if _, err := snapshotter.Prepare(ctx, preparing, "", opt); err != nil { t.Fatal(err) } - committed := filepath.Join(work, "commited") + committed := filepath.Join(work, "committed") if err := snapshotter.Commit(ctx, committed, preparing, opt); err != nil { t.Fatal(err) }