fixtypo: misspell in runtime package

Signed-off-by: Wei Fu <fuweid89@gmail.com>
This commit is contained in:
Wei Fu 2018-10-18 23:21:05 +08:00
parent 9c1db67b3a
commit accadd7118
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ The runtime can also be changed via a container update.
``` ```
When a user specifies a runtime name, `io.containerd.runc.v1`, they will specify the name and version of the runtime. When a user specifies a runtime name, `io.containerd.runc.v1`, they will specify the name and version of the runtime.
This will be trasnlated by containerd into a binary name for the shim. This will be translated by containerd into a binary name for the shim.
`io.containerd.runc.v1` -> `containerd-shim-runc-v1` `io.containerd.runc.v1` -> `containerd-shim-runc-v1`
@ -113,7 +113,7 @@ Containers that are to be launched with an interactive terminal will have the `t
### Root Filesystems ### Root Filesystems
The root filesytems for the containers is provided by on the `Create` rpc. The root filesystem for the containers is provided by on the `Create` rpc.
Shims are responsible for managing the lifecycle of the filesystem mount during the lifecycle of a container. Shims are responsible for managing the lifecycle of the filesystem mount during the lifecycle of a container.
```proto ```proto

View File

@ -196,7 +196,7 @@ type deferredShimWriteLogger struct {
conerr error conerr error
} }
// beginAccept issues an accept to wait for a connection. Once a conneciton // beginAccept issues an accept to wait for a connection. Once a connection
// occurs drains any outstanding buffer. While draining the buffer any writes // occurs drains any outstanding buffer. While draining the buffer any writes
// are blocked. If the buffer fails to fully drain due to a connection drop a // are blocked. If the buffer fails to fully drain due to a connection drop a
// call to `beginAccept` is re-issued waiting for another connection from // call to `beginAccept` is re-issued waiting for another connection from