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 a small typo #39

Merged
merged 1 commit into from
Aug 20, 2024
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
Fix a small typo
  • Loading branch information
romanz committed Aug 18, 2024
commit 94ae47813b718da7e918fc0608f775d8d4275198
2 changes: 1 addition & 1 deletion src/visit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl<'a, T: Visit<'a>> Parse<'a> for T {
///
/// Not every function is called, for example `visit_block_header` is obviously not called when
/// parsing a transasction.
/// Traits with single function would have been more precies, however, it would have required the
/// Traits with single function would have been more precise, however, it would have required the
/// user to implement those trait with an empty block which was considered too verbose. Morever it
/// looks a single trait with many functions is more perfomant.
#[allow(unused)]
Expand Down
Loading