File tree Expand file tree Collapse file tree 8 files changed +11
-11
lines changed
sncast/tests/docs_snippets
snforge-scarb-plugin-deprecated/src Expand file tree Collapse file tree 8 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -408,4 +408,4 @@ jobs:
408408 steps :
409409 - uses : actions/checkout@v5
410410 - name : typos-action
411- uses : crate-ci/typos@v1.31.2
411+ uses : crate-ci/typos@v1.38.1
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Cairo Native introduces additional dependencies outside of the Rust ecosystem.
1616
1717### LLVM
1818
19- LLVM is linked into Starknet Foundry binary, so it doesn't have to be installed separately at the cost an incrased
19+ LLVM is linked into Starknet Foundry binary, so it doesn't have to be installed separately at the cost an increased
2020binary size.
2121
2222### ` ld `
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ impl ToShortString<Felt> for Felt {
118118}
119119
120120pub trait TryInferFormat : Sized {
121- /// Parses value from `hex string`, `dec string`, `quotted cairo shortstring `and `quotted cairo string`
121+ /// Parses value from `hex string`, `dec string`, `quoted cairo shortstring `and `quoted cairo string`
122122 fn infer_format_and_parse ( value : & str ) -> Result < Vec < Self > > ;
123123}
124124
Original file line number Diff line number Diff line change @@ -57,10 +57,10 @@ fn test_docs_snippets() {
5757 . expect ( "Failed to copy the directory" ) ;
5858 }
5959
60- let source_accouns_json_path = hello_sncast_dir. join ( "accounts.json" ) ;
60+ let source_accounts_json_path = hello_sncast_dir. join ( "accounts.json" ) ;
6161 let target_accounts_json_path = tempdir. path ( ) . join ( "accounts.json" ) ;
6262
63- fs:: copy ( & source_accouns_json_path , & target_accounts_json_path)
63+ fs:: copy ( & source_accounts_json_path , & target_accounts_json_path)
6464 . expect ( "Failed to copy accounts.json" ) ;
6565 update_scarb_toml_dependencies ( & tempdir) . unwrap ( ) ;
6666
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ impl ParseFromExpr<Expr> for String {
124124 match expr {
125125 Expr :: String ( string) => Ok ( string. text ( db) . trim_matches ( '"' ) . to_string ( ) ) ,
126126 _ => Err ( T :: error ( format ! (
127- "<{arg_name}> invalid type, should be: double quotted string"
127+ "<{arg_name}> invalid type, should be: double quoted string"
128128 ) ) ) ,
129129 }
130130 }
@@ -142,7 +142,7 @@ impl ParseFromExpr<Expr> for ShortString {
142142 Ok ( ShortString ( string) )
143143 }
144144 _ => Err ( T :: error ( format ! (
145- "<{arg_name}> invalid type, should be: double quotted string"
145+ "<{arg_name}> invalid type, should be: double quoted string"
146146 ) ) ) ,
147147 }
148148 }
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ impl ParseFromExpr<Expr> for String {
129129 match expr {
130130 Expr :: String ( string) => Ok ( string. text ( db) . trim_matches ( '"' ) . to_string ( ) ) ,
131131 _ => Err ( T :: error ( format ! (
132- "<{arg_name}> invalid type, should be: double quotted string"
132+ "<{arg_name}> invalid type, should be: double quoted string"
133133 ) ) ) ,
134134 }
135135 }
@@ -147,7 +147,7 @@ impl ParseFromExpr<Expr> for ShortString {
147147 Ok ( ShortString ( string) )
148148 }
149149 _ => Err ( T :: error ( format ! (
150- "<{arg_name}> invalid type, should be: double quotted string"
150+ "<{arg_name}> invalid type, should be: double quoted string"
151151 ) ) ) ,
152152 }
153153 }
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ It is designed to enable more simplified flow:
179179use snforge_std::spy_events;
180180use snforge_std::EventSpy;
181181use snforge_std::EventFetcher;
182- use snforge_std::EventAsserions ;
182+ use snforge_std::EventAssertions ;
183183use snforge_std::event_name_hash;
184184
185185#[test]
Original file line number Diff line number Diff line change 6161* [ Calldata Transformation] ( starknet/calldata-transformation.md )
6262* [ Block Explorers] ( starknet/block_explorer.md )
6363* [ Integration With Devnet] ( starknet/integration_with_devnet.md )
64- * [ Developer Functionalites ] ( starknet/developer.md )
64+ * [ Developer Functionalities ] ( starknet/developer.md )
6565
6666---
6767
You can’t perform that action at this time.
0 commit comments