Skip to content

Commit dd3634b

Browse files
committed
revert README changes in vendored files
PR moby#17986 inadvertently included changes to some vendored files. This reverts those changes. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent 9cbfa7b commit dd3634b

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

vendor/src/github.com/docker/notary/tuf/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# GOTUF
1+
# GOTUF
22

3-
This is still a work in progress but will shortly be a fully compliant
3+
This is still a work in progress but will shortly be a fully compliant
44
Go implementation of [The Update Framework (TUF)](http://theupdateframework.com/).
55

66
## Where's the CLI
@@ -16,7 +16,7 @@ from Docker should be considered the official CLI to be used with this implement
1616
- [ ] Ensure consistent capitalization in naming (TUF\_\_\_ vs Tuf\_\_\_)
1717
- [X] Make caching of metadata files smarter - PR #5
1818
- [ ] ~~Add configuration for CLI commands. Order of configuration priority from most to least: flags, config file, defaults~~ Notary should be the official CLI
19-
- [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
19+
- [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
2020
- [ ] Comprehensive test cases
2121
- [ ] Delete files no longer in use
2222
- [ ] Fix up errors. Some have to be instantiated, others don't, the inconsistency is annoying.
@@ -32,5 +32,5 @@ without the code becoming overly convoluted.
3232
Some features such as pluggable verifiers have alreayd been merged upstream to flynn/go-tuf
3333
and we are in discussion with [titanous](https://github.com/titanous) about working to merge the 2 implementations.
3434

35-
This implementation retains the same 3 Clause BSD license present on
35+
This implementation retains the same 3 Clause BSD license present on
3636
the original flynn implementation.

vendor/src/github.com/hashicorp/memberlist/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ The changes from SWIM are noted here:
127127
also will periodically send out dedicated gossip messages on their own. This
128128
feature lets you have a higher gossip rate (for example once per 200ms)
129129
and a slower failure detection rate (such as once per second), resulting
130-
in overall faster convergence rates and data propagation speeds. This feature
131-
can be totally disabled as well, if you wish.
130+
in overall faster convergence rates and data propogation speeds. This feature
131+
can be totally disabed as well, if you wish.
132132

133133
* memberlist stores around the state of dead nodes for a set amount of time,
134134
so that when full syncs are requested, the requester also receives information

vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ which will give the process of the container that should be joined. Namespaces f
1818
be found from `/proc/[pid]/ns` and set by `setns` syscall.
1919

2020
And then get the pipe number from `_LIBCONTAINER_INITPIPE`, error message could
21-
be transferred through it. If tty is added, `_LIBCONTAINER_CONSOLE_PATH` will
21+
be transfered through it. If tty is added, `_LIBCONTAINER_CONSOLE_PATH` will
2222
have value and start a console for output.
2323

2424
Finally, `nsexec()` will clone a child process , exit the parent process and let

vendor/src/github.com/philhofer/fwd/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ in the stream, and uses the `io.Seeker` interface if the underlying
2626
stream implements it. `(*fwd.Reader).Next` returns a slice pointing
2727
to the next `n` bytes in the read buffer (like `Peek`), but also
2828
increments the read position. This allows users to process streams
29-
in arbitrary block sizes without having to manage appropriately-sized
29+
in aribtrary block sizes without having to manage appropriately-sized
3030
slices. Additionally, obviating the need to copy the data from the
3131
buffer to another location in memory can improve performance dramatically
3232
in CPU-bound applications.
@@ -174,7 +174,7 @@ func (r *Reader) Skip(n int) (int, error)
174174
```
175175
Skip moves the reader forward 'n' bytes.
176176
Returns the number of bytes skipped and any
177-
errors encountered. It is analogous to Seek(n, 1).
177+
errors encountered. It is analagous to Seek(n, 1).
178178
If the underlying reader implements io.Seeker, then
179179
that method will be used to skip forward.
180180

vendor/src/github.com/ugorji/go/codec/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Rich Feature Set includes:
6868
- Encode/Decode from/to chan types (for iterative streaming support)
6969
- Drop-in replacement for encoding/json. `json:` key in struct tag supported.
7070
- Provides a RPC Server and Client Codec for net/rpc communication protocol.
71-
- Handle unique idiosyncrasies of codecs e.g.
71+
- Handle unique idiosynchracies of codecs e.g.
7272
- For messagepack, configure how ambiguities in handling raw bytes are resolved
7373
- For messagepack, provide rpc server/client codec to support
7474
msgpack-rpc protocol defined at:

0 commit comments

Comments
 (0)