Skip to content

docs: fix typos in comments across multiple files #16046

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libyul/backends/evm/StackLayoutGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ Stack StackLayoutGenerator::propagateStackThroughOperation(Stack _exitStack, CFG
// generated on the fly), s.t. shuffling the `stack + _operation.output` to _exitLayout is cheap.
Stack stack = createIdealLayout(_operation.output, _exitStack, generateSlotOnTheFly, reachableStackDepth());

// Make sure the resulting previous slots do not overlap with any assignmed variables.
// Make sure the resulting previous slots do not overlap with any assignment variables.
if (auto const* assignment = std::get_if<CFG::Assignment>(&_operation.operation))
for (auto& stackSlot: stack)
if (auto const* varSlot = std::get_if<VariableSlot>(&stackSlot))
Expand Down
2 changes: 1 addition & 1 deletion test/compilationTests/corion/provider.sol
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ contract provider is module, safeMath, announcementTypes {
}
function setRightForInterest(uint256 oldValue, uint256 newValue, bool priv) internal {
/*
It checks if the provider has enough connected captital to be able to get from the token emission.
It checks if the provider has enough connected capital to be able to get from the token emission.
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.

@oldValue old
Expand Down
2 changes: 1 addition & 1 deletion test/compilationTests/corion/schelling.sol
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ contract schelling is module, announcementTypes, schellingVars {
@_moduleHandler Address of ModuleHandler.
@_db Address of the database.
@_forReplace This address will be replaced with the old one or not.
@_icoExpansionAddress This address can turn schelling runds during ICO.
@_icoExpansionAddress This address can turn schelling funds during ICO.
*/
db = schellingDB(_db);
super.registerModuleHandler(_moduleHandler);
Expand Down