Skip to content
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

fix: typos in documentation files #1241

Merged
merged 1 commit into from
Feb 18, 2025
Merged
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 clients/cli/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {

// Send ping to the websocket connection and wait for pong
match client.send(Message::Ping(vec![])).await {
//The ping was succesfully sent...
//The ping was successfully sent...
Ok(_) => {
//...wait for pong response from websocket with timeout...
match tokio::time::timeout(std::time::Duration::from_secs(5), client.next())
Expand All @@ -249,7 +249,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Connection is verified working
match client.send(Message::Binary(progress.encode_to_vec())).await {
Ok(_) => {
// println!("\t\tSuccesfully sent progress to orchestrator\n");
// println!("\t\tSuccessfully sent progress to orchestrator\n");
// println!("{:#?}", progress);

// Reset the queued values only after successful send
Expand Down