Skip to content

fix: typos in documentation files #1604

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions crates/phactory/api/proto/pruntime_rpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ service PhactoryAPI {
rpc TakeCheckpoint (google.protobuf.Empty) returns (SyncedTo) {}

// Get networks statistics for contracts
rpc Statistics (StatisticsReqeust) returns (StatisticsResponse) {}
rpc Statistics (StatisticsRequest) returns (StatisticsResponse) {}

//Generate a request to send to another worker in the same cluster to get the cluster state.
rpc GenerateClusterStateRequest (google.protobuf.Empty) returns (SaveClusterStateArguments) {}
Expand Down Expand Up @@ -687,7 +687,7 @@ message StorageProof {
}

// Used to specify the contracts addresses for which statistics should be returned.
message StatisticsReqeust {
message StatisticsRequest {
// A list of contract addresses that to be queried.
repeated string contracts = 1;
// Query for all contracts.
Expand Down
2 changes: 1 addition & 1 deletion crates/phala-sanitized-logger/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ rusty_fork_test! {
}

#[test]
fn show_log_via_tracing_subsriber() {
fn show_log_via_tracing_subscriber() {
use log::info;

std::env::set_var("RUST_LOG_SANITIZED", "1");
Expand Down