Skip to content

Commit b69f36a

Browse files
committed
Fix some typos and grammars
Signed-off-by: ekrecker <[email protected]>
1 parent ddb47a3 commit b69f36a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ If you are interested in trying out containerd see our example at [Getting Start
4444
There are nightly builds available for download [here](https://github.com/containerd/containerd/actions?query=workflow%3ANightly).
4545
Binaries are generated from `master` branch every night for `Linux` and `Windows`.
4646

47-
Please be aware: nightly builds might have critical bugs, it's not recommended for use in prodution and no support provided.
47+
Please be aware: nightly builds might have critical bugs, it's not recommended for use in production and no support provided.
4848

4949
## Runtime Requirements
5050

@@ -140,7 +140,7 @@ redis, err := client.NewContainer(context, "redis-master", containerd.WithNewSpe
140140

141141
### Root Filesystems
142142

143-
containerd allows you to use overlay or snapshot filesystems with your containers. It comes with builtin support for overlayfs and btrfs.
143+
containerd allows you to use overlay or snapshot filesystems with your containers. It comes with built in support for overlayfs and btrfs.
144144

145145
```go
146146
// pull an image and unpack it into the configured snapshotter
@@ -171,7 +171,7 @@ Taking a container object and turning it into a runnable process on a system is
171171
task, err := redis.NewTask(context, cio.NewCreator(cio.WithStdio))
172172
defer task.Delete(context)
173173

174-
// the task is now running and has a pid that can be use to setup networking
174+
// the task is now running and has a pid that can be used to setup networking
175175
// or other runtime settings outside of containerd
176176
pid := task.Pid()
177177

@@ -184,7 +184,7 @@ status, err := task.Wait(context)
184184

185185
### Checkpoint and Restore
186186

187-
If you have [criu](https://criu.org/Main_Page) installed on your machine you can checkpoint and restore containers and their tasks. This allow you to clone and/or live migrate containers to other machines.
187+
If you have [criu](https://criu.org/Main_Page) installed on your machine you can checkpoint and restore containers and their tasks. This allows you to clone and/or live migrate containers to other machines.
188188

189189
```go
190190
// checkpoint the task then push it to a registry

0 commit comments

Comments
 (0)