Skip to content

Commit 6b74cd5

Browse files
author
professor-oak[bot]
committed
docs: fix misspellings in README files
1 parent f1b0fc2 commit 6b74cd5

13 files changed

Lines changed: 17 additions & 17 deletions

File tree

codelab/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting Started
22

3-
This directory contains a minimal template for writting enclave apps with `oak`.
3+
This directory contains a minimal template for writing enclave apps with `oak`.
44

55
## Usage
66

micro_rpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The client and server objects can connect to each other over a transport. A
1919
transport consists of a single method, usually called `invoke`, which represents
2020
an atomic invocation, sending a sequence of bytes and receiving a sequence of
2121
bytes. microRPC takes care of translating a call on the client object to a
22-
request messsage, serialize that to bytes, then on the server side deserialize
22+
request message, serialize that to bytes, then on the server side deserialize
2323
the bytes into the request message, and dispatching the user request to the
2424
correct method on the server object, and similarly for the response path back to
2525
the client.

oak_attestation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This library provides an implementation of the
1111
underlying details of the TEE platform (e.g.,
1212
[AMD SEV-SNP](https://www.amd.com/en/developer/sev.html) or
1313
[Intel TDX](https://www.intel.com/content/www/us/en/developer/tools/trust-domain-extensions/overview.html))
14-
and provides a unified inferface for generating the
14+
and provides a unified interface for generating the
1515
[`Evidence`](../proto/attestation/evidence.proto) message needed for
1616
[Remote Attestation](../docs/remote-attestation.md).
1717

oak_containers/app_base/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ runtime unpack them before running them.
106106

107107
While this is definitely feasible, we've decided against it, for a few reasons:
108108

109-
1. Additional logic and maintance overhead in the Oak Containers Orchestrator.
109+
1. Additional logic and maintenance overhead in the Oak Containers Orchestrator.
110110
2. Additional overhead when loading an image - now the runtime will have to
111111
unpack it, adding even more time to the container startup.
112112
3. Fewer transformations of the measured runtime bundle. We are unpacking your

oak_containers/examples/micro_rpc_noise/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ handle encryption.
66

77
- `application` contains the actual application business logic that the rest of
88
the demo exposes.
9-
- `proto` contains the proto messages and service defintions
9+
- `proto` contains the proto messages and service definitions
1010
- `service` contains the implementation of the microRPC service
1111
- `tests` shows a simple end-to-end example
1212

oak_containers/system_image/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
We use this Docker image to build the base system image for Oak Containers.
1010

1111
The bazel-built system image rules layer in freshly-built Oak Containers
12-
binaries onto a pre-created base image. The base iamge is not re-generated on
12+
binaries onto a pre-created base image. The base image is not re-generated on
1313
every run, since it changes very infrequently.
1414

1515
For more information on updating the base image, see `base/README.md`.

oak_functions_abi/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The Oak Functions WebAssembly module
1010
- [imports functions](#imported-functions) from the Oak Functions runtime.
1111

1212
The Oak Functions WebAssembly ABI is quite low-level, and it is mostly a way to
13-
allow building a more expressive API based on an invocation-bsaed
13+
allow building a more expressive API based on an invocation-based
1414
[microRPC](/micro_rpc/) transport on top of it.
1515

1616
Oak Functions WebAssembly modules will typically use more convenient (and safer)
@@ -69,7 +69,7 @@ providing the following functions as
6969
little-endian u32).
7070
- `result[0]: i32`: numeric
7171
[`StatusCode`](https://github.com/grpc/grpc/blob/master/doc/statuscodes.md#status-codes-and-their-use-in-grpc)
72-
reprsenting the result of the invocation. Note that this is in addition to any
72+
representing the result of the invocation. Note that this is in addition to any
7373
status code that the API implementation may return; it only represents the
7474
success or failure of the Wasm invocation itself as a transport.
7575

oak_functions_standalone/testdata/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Keys are specified in the form of `"(<lat>,<long>)"` where lat and long have two
44
points of precision after the decimal. The values are the temperatures in
5-
Celsius of those corrdinates. Both the keys and values are UTF-8 encoded.
5+
Celsius of those coordinates. Both the keys and values are UTF-8 encoded.
66

77
The data is for testing only and is not based on real temperature data.
88

oak_linux_boot_params/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This crate contains (a subset of) the data structures needed to boot the Linux
44
kernel, which are of interest to someone who wants to implement a bootloader (or
5-
a kernel compatbile with the Linux boot protocol).
5+
a kernel compatible with the Linux boot protocol).
66

77
The data structures themselves were first generated with `bindgen` as follows:
88

oak_private_memory/proto/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Private memory service definition
22

3-
The proto file for the `Invokation Layer` message for private memory service.
3+
The proto file for the `Invocation Layer` message for private memory service.

0 commit comments

Comments
 (0)