Skip to content

Commit b9404d0

Browse files
authored
Merge pull request #648 from swagatbora90/spelling-fix
Fix typo in getting-started doc
2 parents dc8385a + 2ffb634 commit b9404d0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You need to have the following things in order to use firecracker-containerd:
2828
[ "$(uname) $(uname -m)" = "Linux x86_64" ] \
2929
|| err="ERROR: your system is not Linux x86_64."; \
3030
[ -r /dev/kvm ] && [ -w /dev/kvm ] \
31-
|| err="$err\nERROR: /dev/kvm is innaccessible."; \
31+
|| err="$err\nERROR: /dev/kvm is inaccessible."; \
3232
(( $(uname -r | cut -d. -f1)*1000 + $(uname -r | cut -d. -f2) >= 4014 )) \
3333
|| err="$err\nERROR: your kernel version ($(uname -r)) is too old."; \
3434
dmesg | grep -i "hypervisor detected" \
@@ -322,7 +322,7 @@ CNI-configured networks offer the quickest way to get VMs up and running with
322322
connectivity between MicroVMs and to external networks. Setting one up requires
323323
a few extra steps in addition to the above Setup steps.
324324

325-
Production deployments should be sure to choose a network configuration suitale
325+
Production deployments should be sure to choose a network configuration suitable
326326
to the specifics of the environment and workloads being hosting, with particular
327327
attention being given to network isolation between tasks.
328328

docs/host-file-isolation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Linux provides different capabilities for preventing mutation to files:
128128
sealing enforces stronger permissions preventing modification, truncation,
129129
growth or changes in the permission set.
130130

131-
Firecracker also provides some capabilitie:
131+
Firecracker also provides some capabilities:
132132

133133
* Attaching the device as read-only - The emulated device visible to the microVM
134134
is presented as read-only, and the Firecracker VMM should prevent

docs/logging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Logging Congiguration
1+
## Logging Configuration
22
--
33

44
firecracker-containerd allows for users to specify per application/library
@@ -31,7 +31,7 @@ firecracker-runtime.json file.
3131
| firecracker:debug | Most verbose log level for firecracker |
3232
| firecracker:output | Logs Firecracker's stdout and stderr. Can be used with other firecracker levels |
3333
| firecracker-go-sdk:error | Logs any errors information in firecracker-go-sdk |
34-
| firecracker-go-sdk:warning | Logs any errors or warnings in firracker-go-sdk |
34+
| firecracker-go-sdk:warning | Logs any errors or warnings in firecracker-go-sdk |
3535
| firecracker-go-sdk:info | Logs any errors, warnings, or infos in firecracker-go-sdk |
3636
| firecracker-go-sdk:debug | Most verbose logging for firecracker-go-sdk |
3737
| firecracker-containerd:error | Logs any error information during the container/vm lifecycle |

docs/shim-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ The proposed solution is to
263263
13. **If there IS already a shim managing this microVM**, then the new shim process will tell containerd about the pre-existing shim, to which any further requests should be sent
264264
14. **If there IS already a shim managing this microVM**, then the new shim can exit as the pre-existing one will handle further requests
265265
15. **If there IS already a shim managing this microVM**, the pre-existing shim will receive the incoming CreateTaskRequest from containerd
266-
16. **If there IS already a shim managing this microVM**, the pre-exisiting shim will forward the CreateTaskRequest to the Guest Agent, which will create the container and return a response
266+
16. **If there IS already a shim managing this microVM**, the pre-existing shim will forward the CreateTaskRequest to the Guest Agent, which will create the container and return a response
267267
17. **If there IS already a shim managing this microVM**, the pre-existing shim will forward the response back to containerd
268268
18. The final CreateTaskResponse is returned back to the orchestrator
269269

0 commit comments

Comments
 (0)