From d1e72baa15fb81a6dcf80e6727b884fc8ff67335 Mon Sep 17 00:00:00 2001 From: Luca-Bogdan Grigorescu Date: Sun, 15 Nov 2015 00:44:18 +0200 Subject: [PATCH] Fix small typos in documentation files Signed-off-by: Luca-Bogdan Grigorescu --- docs/misc/deprecated.md | 2 +- docs/reference/api/docker_remote_api.md | 2 +- pkg/locker/README.md | 2 +- vendor/src/github.com/docker/notary/tuf/README.md | 2 +- vendor/src/github.com/hashicorp/memberlist/README.md | 4 ++-- .../opencontainers/runc/libcontainer/nsenter/README.md | 2 +- vendor/src/github.com/philhofer/fwd/README.md | 4 ++-- vendor/src/github.com/ugorji/go/codec/README.md | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/misc/deprecated.md b/docs/misc/deprecated.md index 3d2160edb9..be74883fc1 100644 --- a/docs/misc/deprecated.md +++ b/docs/misc/deprecated.md @@ -93,7 +93,7 @@ The following double-dash options are deprecated and have no replacement: docker search --trusted ### Auto-creating missing host paths for bind mounts -**Deprected in Release: v1.9** +**Deprecated in Release: v1.9** **Target for Removal in Release: 1.11** diff --git a/docs/reference/api/docker_remote_api.md b/docs/reference/api/docker_remote_api.md index 7e2e14ae34..b22446738d 100644 --- a/docs/reference/api/docker_remote_api.md +++ b/docs/reference/api/docker_remote_api.md @@ -216,6 +216,6 @@ container. Previously this was only available when starting a container. * `DELETE /containers/(id)` when using `force`, the container will be immediately killed with SIGKILL. * `POST /containers/(id)/start` the `hostConfig` option accepts the field `CapAdd`, which specifies a list of capabilities to add, and the field `CapDrop`, which specifies a list of capabilities to drop. -* `POST /images/create` th `fromImage` and `repo` parameters supportthe +* `POST /images/create` th `fromImage` and `repo` parameters support the `repo:tag` format. Consequently, the `tag` parameter is now obsolete. Using the new format and the `tag` parameter at the same time will return an error. diff --git a/pkg/locker/README.md b/pkg/locker/README.md index 565c1454bd..e84a815cc5 100644 --- a/pkg/locker/README.md +++ b/pkg/locker/README.md @@ -42,7 +42,7 @@ func (i *important) Create(name string, data interface{}) { i.locks.Lock(name) defer i.locks.Unlock(name) - i.createImporatant(data) + i.createImportant(data) s.mu.Lock() i.data[name] = data diff --git a/vendor/src/github.com/docker/notary/tuf/README.md b/vendor/src/github.com/docker/notary/tuf/README.md index 5a97bbc0de..16b9059c54 100644 --- a/vendor/src/github.com/docker/notary/tuf/README.md +++ b/vendor/src/github.com/docker/notary/tuf/README.md @@ -16,7 +16,7 @@ from Docker should be considered the official CLI to be used with this implement - [ ] Ensure consistent capitalization in naming (TUF\_\_\_ vs Tuf\_\_\_) - [X] Make caching of metadata files smarter - PR #5 - [ ] ~~Add configuration for CLI commands. Order of configuration priority from most to least: flags, config file, defaults~~ Notary should be the official CLI -- [X] Reasses organization of data types. Possibly consolidate a few things into the data package but break up package into a few more distinct files +- [X] Reassess organization of data types. Possibly consolidate a few things into the data package but break up package into a few more distinct files - [ ] Comprehensive test cases - [ ] Delete files no longer in use - [ ] Fix up errors. Some have to be instantiated, others don't, the inconsistency is annoying. diff --git a/vendor/src/github.com/hashicorp/memberlist/README.md b/vendor/src/github.com/hashicorp/memberlist/README.md index d55befac6e..a5e65c00f1 100644 --- a/vendor/src/github.com/hashicorp/memberlist/README.md +++ b/vendor/src/github.com/hashicorp/memberlist/README.md @@ -127,8 +127,8 @@ The changes from SWIM are noted here: also will periodically send out dedicated gossip messages on their own. This feature lets you have a higher gossip rate (for example once per 200ms) and a slower failure detection rate (such as once per second), resulting - in overall faster convergence rates and data propogation speeds. This feature - can be totally disabed as well, if you wish. + in overall faster convergence rates and data propagation speeds. This feature + can be totally disabled as well, if you wish. * memberlist stores around the state of dead nodes for a set amount of time, so that when full syncs are requested, the requester also receives information diff --git a/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/README.md b/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/README.md index d1a60ef985..7da6dbe9a2 100644 --- a/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/README.md +++ b/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/README.md @@ -18,7 +18,7 @@ which will give the process of the container that should be joined. Namespaces f be found from `/proc/[pid]/ns` and set by `setns` syscall. And then get the pipe number from `_LIBCONTAINER_INITPIPE`, error message could -be transfered through it. If tty is added, `_LIBCONTAINER_CONSOLE_PATH` will +be transferred through it. If tty is added, `_LIBCONTAINER_CONSOLE_PATH` will have value and start a console for output. Finally, `nsexec()` will clone a child process , exit the parent process and let diff --git a/vendor/src/github.com/philhofer/fwd/README.md b/vendor/src/github.com/philhofer/fwd/README.md index 8c7d25a87e..e17448b9f4 100644 --- a/vendor/src/github.com/philhofer/fwd/README.md +++ b/vendor/src/github.com/philhofer/fwd/README.md @@ -26,7 +26,7 @@ in the stream, and uses the `io.Seeker` interface if the underlying stream implements it. `(*fwd.Reader).Next` returns a slice pointing to the next `n` bytes in the read buffer (like `Peek`), but also increments the read position. This allows users to process streams -in aribtrary block sizes without having to manage appropriately-sized +in arbitrary block sizes without having to manage appropriately-sized slices. Additionally, obviating the need to copy the data from the buffer to another location in memory can improve performance dramatically in CPU-bound applications. @@ -174,7 +174,7 @@ func (r *Reader) Skip(n int) (int, error) ``` Skip moves the reader forward 'n' bytes. Returns the number of bytes skipped and any -errors encountered. It is analagous to Seek(n, 1). +errors encountered. It is analogous to Seek(n, 1). If the underlying reader implements io.Seeker, then that method will be used to skip forward. diff --git a/vendor/src/github.com/ugorji/go/codec/README.md b/vendor/src/github.com/ugorji/go/codec/README.md index a790a52bb9..91cb3a27bd 100644 --- a/vendor/src/github.com/ugorji/go/codec/README.md +++ b/vendor/src/github.com/ugorji/go/codec/README.md @@ -68,7 +68,7 @@ Rich Feature Set includes: - Encode/Decode from/to chan types (for iterative streaming support) - Drop-in replacement for encoding/json. `json:` key in struct tag supported. - Provides a RPC Server and Client Codec for net/rpc communication protocol. - - Handle unique idiosynchracies of codecs e.g. + - Handle unique idiosyncrasies of codecs e.g. - For messagepack, configure how ambiguities in handling raw bytes are resolved - For messagepack, provide rpc server/client codec to support msgpack-rpc protocol defined at: