From 5792da28d5408eeea58970813a37a93364e523f1 Mon Sep 17 00:00:00 2001 From: Jim Posen Date: Thu, 25 Jul 2019 12:37:57 +0200 Subject: [PATCH] Fix typo Co-Authored-By: Sergei Pepyakin --- src/gas/validation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gas/validation.rs b/src/gas/validation.rs index b367366..7fb6c6e 100644 --- a/src/gas/validation.rs +++ b/src/gas/validation.rs @@ -5,7 +5,7 @@ //! functionality, then ensure for all functions defined, in all execution paths though the //! function body that do not trap that the amount of gas charged by the proposed metering //! instructions is correct. This is done by constructing a control flow graph and exhaustively -//! searching though all paths, which may take exponential time in the size of the function body in +//! searching through all paths, which may take exponential time in the size of the function body in //! the worst case. use super::MeteredBlock;