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 #8794

Open
wants to merge 6 commits into
base: develop
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
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl Connection {
Origin::Node,
Kind::Internal,
format!(
"Failed to delete secure channnel with address {address}. {error}",
"Failed to delete secure channel with address {address}. {error}",
address = encryptor,
),
))?,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ impl NodeManager {
ockam_core::Error::new(
Origin::Api,
Kind::Internal,
format!("Error while deleting secure channel with addrress {}", addr,),
format!("Error while deleting secure channel with address {}", addr,),
)
})
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ impl ControllerClient {
.into_iter()
.find(|a| a.email == email.to_string())
.ok_or(miette!(
"A user with email {email} was not added to proejct {project_id}"
"A user with email {email} was not added to project {project_id}"
))
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,11 +398,11 @@ pub mod tests {
use std::str::FromStr;

quickcheck! {
fn subcription_legacy(s: SubscriptionLegacy) -> TestResult {
fn subscription_legacy(s: SubscriptionLegacy) -> TestResult {
validate_with_schema("subscription_legacy", s)
}

fn activate_subcription(s: ActivateSubscription) -> TestResult {
fn activate_subscription(s: ActivateSubscription) -> TestResult {
validate_with_schema("activate_subscription", s)
}
}
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_api/tests/portals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ fn test_portal_payload_transfer(outgoing_disruption: Disruption, incoming_disrup
.await
.unwrap();

// we can't send and read the data from a sigle async context
// we can't send and read the data from a single async context
let (mut rx, mut tx) = stream.into_split();

let copied_buffer = random_buffer.clone();
Expand Down
Loading