Skip to content

Commit 8ce64b2

Browse files
author
fate-grand-order
committed
fix some typos
Signed-off-by: fate-grand-order <chenjg@harmonycloud.cn>
1 parent 696e88c commit 8ce64b2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

design/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ may be exported for access via corresponding _services_.
4141
## Modules
4242

4343
In addition to the subsystems have, we have several components that may cross
44-
subsystem boundaries, referened to as components. We have the following
44+
subsystem boundaries, referenced to as components. We have the following
4545
components:
4646

4747
- __*Executor*__: The executor implements the actual container runtime.

design/lifecycle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ While containerd is a daemon that provides API to manage multiple containers, th
55

66
## containerd
77

8-
The daemon provides an API to manage multiple containers. It can handle locking in process where needed to cordinate tasks between subsystems. While the daemon does fork off the needed processes to run containers, the shim and runc, these are re-parented to the system's init.
8+
The daemon provides an API to manage multiple containers. It can handle locking in process where needed to coordinate tasks between subsystems. While the daemon does fork off the needed processes to run containers, the shim and runc, these are re-parented to the system's init.
99

1010
## shim
1111

design/mounts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ unit and unmounted as a unit.
1313
From an architecture perspective, components produce mounts and runtime
1414
executors consume them.
1515

16-
More imaginitive use cases include the ability to virtualize a series of mounts
16+
More imaginative use cases include the ability to virtualize a series of mounts
1717
from various components without ever having to create a runtime. This will aid
1818
in testing and implementation of satellite components.
1919

events/events_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func TestBasicEvent(t *testing.T) {
2222

2323
ctx = WithTopic(ctx, "content")
2424
// simulate sub-operations with a separate topic, on the content store
25-
G(ctx).Post(ctx, fmt.Sprintf("received sha:256"))
25+
G(ctx).Post(ctx, fmt.Sprint("received sha:256"))
2626

2727
G(ctx).Post(ctx, fmt.Sprintf("unpack layer %v", layer))
2828

events/transaction.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func (tx *transaction) begin(ctx context.Context, poster Poster) *transaction {
3737
}
3838

3939
// post the transaction started event
40-
poster.Post(ctx, child.makeTransactionEvent("begin")) // tranactions are really just events
40+
poster.Post(ctx, child.makeTransactionEvent("begin")) // transactions are really just events
4141

4242
return child
4343
}

0 commit comments

Comments
 (0)