From c7bb117d5080f068c194075fecf554b97721dd51 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 29 Nov 2022 11:39:16 +0100 Subject: [PATCH] Fix spelling. --- libyul/optimiser/UnusedStoreEliminator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libyul/optimiser/UnusedStoreEliminator.h b/libyul/optimiser/UnusedStoreEliminator.h index f8227bd10..6e5dbadc3 100644 --- a/libyul/optimiser/UnusedStoreEliminator.h +++ b/libyul/optimiser/UnusedStoreEliminator.h @@ -49,7 +49,7 @@ struct AssignedValue; * to sstore, as we don't know whether the memory location will be read once we leave the function's scope, * so the statement will be removed only if all code code paths lead to a memory overwrite. * - * The m_store member of UnusedStoreBase uses the key "m" for memory ond "s" for storage stores. + * The m_store member of UnusedStoreBase uses the key "m" for memory and "s" for storage stores. * * Best run in SSA form. *