From 94a331952de64c02aeed6b0416b71ca7215ddece Mon Sep 17 00:00:00 2001 From: Karma <148863819+0xKarm@users.noreply.github.com> Date: Sat, 2 Dec 2023 05:11:48 +0800 Subject: [PATCH] chore: fix typo (#575) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What ❔ - fix typo ## Why ❔ - fix typo ## Checklist - [x] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] Code has been formatted via `zk fmt` and `zk lint`. - [x] Spellcheck has been run via `cargo spellcheck --cfg=./spellcheck/era.cfg --code 1`. --------- Co-authored-by: Igor Aleksanov --- .../lib/multivm/src/versions/vm_virtual_blocks/tracers/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/multivm/src/versions/vm_virtual_blocks/tracers/utils.rs b/core/lib/multivm/src/versions/vm_virtual_blocks/tracers/utils.rs index 0b6c7ebcfa8..0ab697f626f 100644 --- a/core/lib/multivm/src/versions/vm_virtual_blocks/tracers/utils.rs +++ b/core/lib/multivm/src/versions/vm_virtual_blocks/tracers/utils.rs @@ -91,7 +91,7 @@ pub(crate) fn get_debug_log( let msg = String::from_utf8(msg).expect("Invalid debug message"); let data = U256::from_big_endian(&data); - // For long data, it is better to use hex-encoding for greater readibility + // For long data, it is better to use hex-encoding for greater readability let data_str = if data > U256::from(u64::max_value()) { let mut bytes = [0u8; 32]; data.to_big_endian(&mut bytes);