Skip to content

Commit 3a813b2

Browse files
GarmashAlexmatheusaaguiar
authored andcommitted
fix typos in comments
1 parent 0917604 commit 3a813b2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libyul/backends/evm/StackLayoutGenerator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ Stack StackLayoutGenerator::propagateStackThroughOperation(Stack _exitStack, CFG
308308
// generated on the fly), s.t. shuffling the `stack + _operation.output` to _exitLayout is cheap.
309309
Stack stack = createIdealLayout(_operation.output, _exitStack, generateSlotOnTheFly, reachableStackDepth());
310310

311-
// Make sure the resulting previous slots do not overlap with any assignmed variables.
311+
// Make sure the resulting previous slots do not overlap with any assigned variables.
312312
if (auto const* assignment = std::get_if<CFG::Assignment>(&_operation.operation))
313313
for (auto& stackSlot: stack)
314314
if (auto const* varSlot = std::get_if<VariableSlot>(&stackSlot))

test/compilationTests/corion/provider.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ contract provider is module, safeMath, announcementTypes {
185185
}
186186
function setRightForInterest(uint256 oldValue, uint256 newValue, bool priv) internal {
187187
/*
188-
It checks if the provider has enough connected captital to be able to get from the token emission.
188+
It checks if the provider has enough connected capital to be able to get from the token emission.
189189
In case the provider is not able to get the share from the token emission then the connected capital will not count to the value of the globalFunds, to the current schelling round.
190190
191191
@oldValue old

test/compilationTests/corion/schelling.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ contract schelling is module, announcementTypes, schellingVars {
256256
@_moduleHandler Address of ModuleHandler.
257257
@_db Address of the database.
258258
@_forReplace This address will be replaced with the old one or not.
259-
@_icoExpansionAddress This address can turn schelling runds during ICO.
259+
@_icoExpansionAddress This address can turn schelling funds during ICO.
260260
*/
261261
db = schellingDB(_db);
262262
super.registerModuleHandler(_moduleHandler);

0 commit comments

Comments
 (0)