From 2be0dbddbbcd292db59b38143850a9b6c8ea93e4 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 10 Sep 2018 13:48:35 -0700 Subject: [PATCH] Correct spelling --- src/bank.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bank.rs b/src/bank.rs index 42a18c8a6..be53f4d12 100644 --- a/src/bank.rs +++ b/src/bank.rs @@ -635,7 +635,7 @@ impl Bank { e.remove_entry(); } }; - //TODO this allocation needs to be changed once the runtime only allows for explitly + //TODO this allocation needs to be changed once the runtime only allows for explicitly //allocated memory account[1].userdata = if pending.is_empty() { vec![] @@ -664,7 +664,7 @@ impl Bank { for key in completed { pending.remove(&key); } - //TODO this allocation needs to be changed once the runtime only allows for explitly + //TODO this allocation needs to be changed once the runtime only allows for explicitly //allocated memory account.userdata = if pending.is_empty() { vec![]