From 4dc368db3abf8532745cfda2b043a4cdd75b5a75 Mon Sep 17 00:00:00 2001 From: dm4 Date: Mon, 22 Jul 2019 15:16:56 +0800 Subject: [PATCH] Fix typo in Yul optimizer --- libyul/optimiser/Semantics.cpp | 2 +- libyul/optimiser/Semantics.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libyul/optimiser/Semantics.cpp b/libyul/optimiser/Semantics.cpp index 4426c63a8..154a63bb5 100644 --- a/libyul/optimiser/Semantics.cpp +++ b/libyul/optimiser/Semantics.cpp @@ -1,4 +1,4 @@ -/*( +/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify diff --git a/libyul/optimiser/Semantics.h b/libyul/optimiser/Semantics.h index 4dcec2e5e..14fa128c9 100644 --- a/libyul/optimiser/Semantics.h +++ b/libyul/optimiser/Semantics.h @@ -71,7 +71,7 @@ private: /// Note that this is a purely syntactic property meaning that even if this is false, /// the code can still contain calls to functions that contain the msize instruction. bool m_containsMSize = false; - /// If false, storage is guaranteed to be unchanged by the coded under all + /// If false, storage is guaranteed to be unchanged by the code under all /// circumstances. bool m_invalidatesStorage = false; bool m_invalidatesMemory = false;