Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -408,4 +408,4 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: typos-action
uses: crate-ci/typos@v1.31.2
uses: crate-ci/typos@v1.38.1
2 changes: 1 addition & 1 deletion CAIRO_NATIVE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Cairo Native introduces additional dependencies outside of the Rust ecosystem.

### LLVM

LLVM is linked into Starknet Foundry binary, so it doesn't have to be installed separately at the cost an incrased
LLVM is linked into Starknet Foundry binary, so it doesn't have to be installed separately at the cost an increased
binary size.

### `ld`
Expand Down
2 changes: 1 addition & 1 deletion crates/conversions/src/felt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl ToShortString<Felt> for Felt {
}

pub trait TryInferFormat: Sized {
/// Parses value from `hex string`, `dec string`, `quotted cairo shortstring `and `quotted cairo string`
/// Parses value from `hex string`, `dec string`, `quoted cairo shortstring `and `quoted cairo string`
fn infer_format_and_parse(value: &str) -> Result<Vec<Self>>;
}

Expand Down
4 changes: 2 additions & 2 deletions crates/sncast/tests/docs_snippets/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ fn test_docs_snippets() {
.expect("Failed to copy the directory");
}

let source_accouns_json_path = hello_sncast_dir.join("accounts.json");
let source_accounts_json_path = hello_sncast_dir.join("accounts.json");
let target_accounts_json_path = tempdir.path().join("accounts.json");

fs::copy(&source_accouns_json_path, &target_accounts_json_path)
fs::copy(&source_accounts_json_path, &target_accounts_json_path)
.expect("Failed to copy accounts.json");
update_scarb_toml_dependencies(&tempdir).unwrap();

Expand Down
4 changes: 2 additions & 2 deletions crates/snforge-scarb-plugin-deprecated/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ impl ParseFromExpr<Expr> for String {
match expr {
Expr::String(string) => Ok(string.text(db).trim_matches('"').to_string()),
_ => Err(T::error(format!(
"<{arg_name}> invalid type, should be: double quotted string"
"<{arg_name}> invalid type, should be: double quoted string"
))),
}
}
Expand All @@ -142,7 +142,7 @@ impl ParseFromExpr<Expr> for ShortString {
Ok(ShortString(string))
}
_ => Err(T::error(format!(
"<{arg_name}> invalid type, should be: double quotted string"
"<{arg_name}> invalid type, should be: double quoted string"
))),
}
}
Expand Down
4 changes: 2 additions & 2 deletions crates/snforge-scarb-plugin/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl ParseFromExpr<Expr> for String {
match expr {
Expr::String(string) => Ok(string.text(db).trim_matches('"').to_string()),
_ => Err(T::error(format!(
"<{arg_name}> invalid type, should be: double quotted string"
"<{arg_name}> invalid type, should be: double quoted string"
))),
}
}
Expand All @@ -147,7 +147,7 @@ impl ParseFromExpr<Expr> for ShortString {
Ok(ShortString(string))
}
_ => Err(T::error(format!(
"<{arg_name}> invalid type, should be: double quotted string"
"<{arg_name}> invalid type, should be: double quoted string"
))),
}
}
Expand Down
2 changes: 1 addition & 1 deletion design_documents/accessing_emitted_events.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ It is designed to enable more simplified flow:
use snforge_std::spy_events;
use snforge_std::EventSpy;
use snforge_std::EventFetcher;
use snforge_std::EventAsserions;
use snforge_std::EventAssertions;
use snforge_std::event_name_hash;

#[test]
Expand Down
2 changes: 1 addition & 1 deletion docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
* [Calldata Transformation](starknet/calldata-transformation.md)
* [Block Explorers](starknet/block_explorer.md)
* [Integration With Devnet](starknet/integration_with_devnet.md)
* [Developer Functionalites](starknet/developer.md)
* [Developer Functionalities](starknet/developer.md)

---

Expand Down
Loading