Skip to content

Commit 442556b

Browse files
committed
fix(typos): Fix first round of typos from spellcheck upgrade
This is the first round of typos that our spellcheck upgrade found. I suspect, as we go, we should find more in the newly added dictionary and fix them appropriately. Signed-off-by: Anastassios Nanos <ananos@nubificus.co.uk>
1 parent b79e217 commit 442556b

File tree

15 files changed

+22
-24
lines changed

15 files changed

+22
-24
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
- ([1ae5d5b](https://github.com/nubificus/urunc/commit/1ae5d5ba514a061bf14dbf01035a986b5cfb26e4)) Update installation instructions, add linting instructions (@gntouts)
155155

156156
- ([89fa71c](https://github.com/nubificus/urunc/commit/89fa71cc35f0bb3ce019e4c7b861dd43f49ead6b)) Add tests, update workflow triggers (@gntouts)
157-
- Add end to end tests for hvt hypervisor and rumprun unikernels using ctr, nerdct, crictl.
157+
- Add end to end tests for hvt hypervisor and rumprun unikernels using ctr, nerdctl, crictl.
158158

159159
- ([9271e4f](https://github.com/nubificus/urunc/commit/9271e4f2dd667c4c23b716ec10010ec6d7759671)) Refactor urunc to enhance code organization and maintainability (@gntouts)
160160

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ INSTALL_DEPS += $(shell test -e $(SHIM_BIN)_static_$(ARCH) \
104104

105105
# Main Building rules
106106
#
107-
# By default we opt to build static binaries targeting the host archiotecture.
107+
# By default we opt to build static binaries targeting the host architecture.
108108
# However, we build shim as a dynamically-linked binary.
109109

110110
## default Build shim and urunc statically for host arch.(default).
@@ -143,8 +143,8 @@ dynamic: $(URUNC_BIN)_dynamic_$(ARCH) $(SHIM_BIN)_dynamic_$(ARCH)
143143
.PHONY: all
144144
all: $(SHIM_BIN)_static_arm64 $(SHIM_BIN)_static_amd64 $(URUNC_BIN)_static_amd64 $(URUNC_BIN)_static_arm64
145145

146-
# Just an alias for $(VENDOR_DIR) for easie invocation
147-
## prepare Run go mod vendor and veridy.
146+
# Just an alias for $(VENDOR_DIR) for easy invocation
147+
## prepare Run go mod tidy, vendor, and verify.
148148
prepare: $(VENDOR_DIR)
149149

150150
# Add tidy as order-only prerequisite. In that way, since tidy does not
@@ -156,7 +156,7 @@ $(VENDOR_DIR):
156156
$(GO) mod verify
157157

158158
# Add tidy and as order-only prerequisite. In that way, since tidy and
159-
# vendor do notproduce any file and execute all the time,
159+
# vendor do not produce any file and execute all the time,
160160
# we avoid the rebuilding of urunc if it has previously built and the
161161
# source files have not changed.
162162
$(URUNC_BIN)_static_%: $(URUNC_SRC) | prepare

cmd/urunc/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func createUnikontainer(context *cli.Context) (err error) {
168168
// TODO: This part of code needs better rhandling. It is not the
169169
// job of the urunc create to setup the terminal for reexec.
170170
// The main concern is the nsenter execution before the reexec.
171-
// If anythong goes wrong and we mess up with nsenter debugging
171+
// If anything goes wrong and we mess up with nsenter debugging
172172
// is extremely hard.
173173
if unikontainer.Spec.Process.Terminal {
174174
ptm, err := pty.Start(reexecCommand)

cmd/urunc/log_forward.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import (
2626
"github.com/sirupsen/logrus"
2727
)
2828

29-
// Spelcheck isues triger
3029
var msgRegex = regexp.MustCompile(`^([\w\-]+\[\d+\]): (.+)$`)
3130

3231
type StructuredJSONFormatter struct{}

docs/design/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In the unikernel context a single-process application runs directly on top of a
2020
Virtual Machine (VM) or a sandbox. At the same time, in the VM context, every
2121
VM runs as a process. Subsequently, `urunc` combines these two characteristics
2222
and treats the VM's process, which executes the unikernel that runs the
23-
application, as the container's process. This way, `urunc` does not reuire any
23+
application, as the container's process. This way, `urunc` does not require any
2424
auxiliary process running alongside the unikernel, maintaining as less overhead
2525
as possible. Instead `urunc` directly manages the application running in the
2626
unikernel through the VMM or the sandbox monitor. Moreover, `urunc` does not
@@ -61,7 +61,7 @@ or the unikernel and the aforementioned metadata which dictate how the unikernel
6161
should be run. The metadata can be passed to `urunc` either in the form of
6262
[annotations](https://github.com/opencontainers/runtime-spec/blob/main/config.md#annotations)
6363
or as a specific file in the container's rootfs. For a detailed explanation and
64-
an up-to-date list of the currently supported annotations take alook at the
64+
an up-to-date list of the currently supported annotations take a look at the
6565
[packaging unikernels page](../package/#annotations).
6666

6767
Although `urunc`-formatted unikernel images are not designed to be executed by

docs/developer-guide/Code-of-Conduct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ title: "Code of Conduct"
44
description: "Code of Conduct"
55
---
66

7-
All maintainers and communicty members of `urunc` must abide the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/main/code-of-conduct.md).
7+
All maintainers and community members of `urunc` must abide the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/main/code-of-conduct.md).
88

docs/developer-guide/governance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ is the governing body for the project.
7575
To become a Maintainer you need to demonstrate the following:
7676

7777
* commitment to the project:
78-
* actively participate in mettings, discussions, contributions, code and
78+
* actively participate in meetings, discussions, contributions, code and
7979
documentation reviews for at least 6 months,
8080
* perform reviews for at least 3 non-trivial pull requests,
8181
* contribute 3 non-trivial pull requests and have them merged,

docs/developer-guide/security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ address delivers your message securely to all maintainers.
3131

3232
### Vulnerability handling process
3333

34-
Upon the receival of a vulnerability report, the following process will take place:
34+
Upon the receipt of a vulnerability report, the following process will take place:
3535

3636
- the `urunc` maintainers will acknowledge and analyze the report within 48
3737
hours

docs/developer-guide/timestamps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ $ cat /tmp/urunc.zlog | grep TS
9292

9393
> Note: the timestamp destination (`/tmp/urunc.zlog`) is hardcoded for the time being.
9494
95-
## Gethering the timestamps
95+
## Gathering the timestamps
9696

9797
There are 3 Python utilities inside the `script/performance` directory to help gather the timestamps.
9898

docs/hypervisor-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ seccomp filter allowing only seven system calls. The unikernel running on top of
230230
interacts with this monitor through a similar interface with
231231
[Solo5-hvt](https://github.com/Solo5/solo5), facilitating network and block
232232
storage I/O. [Solo5-spt](https://github.com/Solo5/solo5) can provide extremely
233-
fast intantiation times, very small overhead, along with performant execution.
233+
fast instantiation times, very small overhead, along with performant execution.
234234

235235
#### Installing Solo5-spt
236236

0 commit comments

Comments
 (0)