From f352b7960f224bda6ba5f6dcd812b8a745286095 Mon Sep 17 00:00:00 2001 From: gregorycoppola Date: Fri, 28 Jan 2022 16:25:02 +0000 Subject: [PATCH] fix comment s/e.g./i.e./ --- src/clarity_vm/clarity.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clarity_vm/clarity.rs b/src/clarity_vm/clarity.rs index 1565118a88..23575ad45f 100644 --- a/src/clarity_vm/clarity.rs +++ b/src/clarity_vm/clarity.rs @@ -74,7 +74,7 @@ use types::chainstate::BurnchainHeaderHash; /// This struct is used to map the context at a point in time to concrete limits on block /// length and execution run-time. This allows the user to either: -/// 1) use default production settings, e.g., read the block limits from the StacksEpoch +/// 1) use default production settings, i.e., read the block limits from the StacksEpoch /// 2) override defaults with special settings to make a tool, e.g., the mempool analyzer /// 3) override defaults with special settings for test. /// Note: We use a simple interface that can be expanded over time if necessary.