Skip to content

Typos: ablity -> ability #101755

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

Merged
merged 3 commits into from
May 1, 2024
Merged
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 src/coreclr/jit/optimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5052,7 +5052,7 @@ void Compiler::optHoistCandidate(GenTree* tree,
FlowGraphNaturalLoop* loop,
LoopHoistContext* hoistCtxt)
{
// It must pass the hoistable profitablity tests for this loop level
// It must pass the hoistable profitability tests for this loop level
if (!optIsProfitableToHoistTree(tree, loop, hoistCtxt))
{
JITDUMP(" ... not profitable to hoist\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ bool WithCache(uint context)

Debug.Assert(context < CharKind.ContextLimit);

// If nullablity has been computed for the given context then return it
// If nullability has been computed for the given context then return it
byte b = Volatile.Read(ref _nullabilityCache[context]);
if (b != UndefinedByte)
{
Expand Down
2 changes: 1 addition & 1 deletion src/native/corehost/bundle/extractor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ void extractor_t::commit_dir()
// Retry the move operation with some wait in between the attempts. This is to workaround for possible file locking
// caused by AV software. Basically the extraction process above writes a bunch of executable files to disk
// and some AV software may decide to scan them on write. If this happens the files will be locked which blocks
// our ablity to move them.
// our ability to move them.

bool extracted_by_concurrent_process = false;
bool extracted_by_current_process =
Expand Down
Loading