Skip to content

Commit

Permalink
chore: fix some typos (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel authored Jun 9, 2023
1 parent ea00694 commit dca4e9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion console-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ system consists of two primary components:
* _instrumentation_, embedded in the application, which collects data from the
async runtime and exposes it over the console's wire format
* _consumers_, such as the [`tokio-console`] command-line application, which
connect to the instrumented application, recieve telemetry data, and display
connect to the instrumented application, receive telemetry data, and display
it to the user

The wire format [protobuf] bindings in this crate are used by both the
Expand Down
2 changes: 1 addition & 1 deletion console-subscriber/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ system consists of two primary components:
* _instrumentation_, embedded in the application, which collects data from the
async runtime and exposes it over the console's [wire format]
* _consumers_, such as the [`tokio-console`] command-line application, which
connect to the instrumented application, recieve telemetry data, and display
connect to the instrumented application, receive telemetry data, and display
it to the user

This crate implements the instrumentation-side interface using data
Expand Down
2 changes: 1 addition & 1 deletion console-subscriber/src/record.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fn record_io(file: File, rx: Receiver<Event>) -> io::Result<()> {
},
)?;

// wait to recieve an event...
// wait to receive an event...
while let Ok(event) = rx.recv() {
// TODO: what to do if file error?
write(&mut file, &event)?;
Expand Down
2 changes: 1 addition & 1 deletion tokio-console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ system consists of two primary components:
collects data from the async runtime and exposes it over the console's wire
format
* &#x1f6f0;&#xfe0f; _consumers_, which connect to the instrumented application,
recieve telemetry data, and display it to the user
receive telemetry data, and display it to the user

This crate is the primary consumer of `tokio-console` telemetry, a command-line
application that provides an interactive debugging interface.
Expand Down

0 comments on commit dca4e9e

Please sign in to comment.