Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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