Skip to content

Commit

Permalink
chore(papyrus_proc_macros): fix typo in handle_all_response_variants …
Browse files Browse the repository at this point in the history
…macro
  • Loading branch information
matanl-starkware committed Mar 4, 2025
1 parent d4739f6 commit 433913d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/papyrus_proc_macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ impl syn::parse::Parse for HandleAllResponseVariantsMacroInput {
/// let response = self.send(request).await;
/// match response? {
/// MempoolResponse::GetTransactions(Ok(boxed_resp)) => {
/// let resr = *boxed_resp;
/// let resp = *boxed_resp;
/// Ok(resp)
/// }
/// MempoolResponse::GetTransactions(Err(resp)) => {
Expand Down

0 comments on commit 433913d

Please sign in to comment.