From 94ae47813b718da7e918fc0608f775d8d4275198 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sun, 18 Aug 2024 21:36:10 +0300 Subject: [PATCH] Fix a small typo --- src/visit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/visit.rs b/src/visit.rs index 059d4dd..7474397 100644 --- a/src/visit.rs +++ b/src/visit.rs @@ -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)]