Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdeel Mujahid <3840695+am11@users.noreply.github.com>2022-05-23 20:14:58 +0300
committerGitHub <noreply@github.com>2022-05-23 20:14:58 +0300
commit55e2378d86841ec766ee21d5e504d7724c39b53b (patch)
treef456bbc3391864b76a326f45e12847941685e4fb /src/tests/baseservices
parent534cfe37792c2ca451fd1258097b1ff0349cc6ee (diff)
Fix typos (#69537)
* Fix typos * Fix typo: seperate -> separate * Rename ApplicationNameSetFromArgument * Update src/coreclr/vm/methodtablebuilder.cpp * Update docs/coding-guidelines/clr-code-guide.md Co-authored-by: Dan Moseley <danmose@microsoft.com> * Update src/mono/mono/tests/verifier/make_tests.sh Co-authored-by: Dan Moseley <danmose@microsoft.com> Co-authored-by: Jan Kotas <jkotas@microsoft.com>
Diffstat (limited to 'src/tests/baseservices')
-rw-r--r--src/tests/baseservices/threading/commitstackonlyasneeded/StackCommitCommon.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/baseservices/threading/commitstackonlyasneeded/StackCommitCommon.cs b/src/tests/baseservices/threading/commitstackonlyasneeded/StackCommitCommon.cs
index 55c30ff97f5..995b78cc104 100644
--- a/src/tests/baseservices/threading/commitstackonlyasneeded/StackCommitCommon.cs
+++ b/src/tests/baseservices/threading/commitstackonlyasneeded/StackCommitCommon.cs
@@ -236,7 +236,7 @@ namespace StackCommitTest
public static void Run(Action action)
{
- //We need to allocate the object inside of a seperate method to ensure that
+ //We need to allocate the object inside of a separate method to ensure that
//the reference will be eliminated before GC.Collect is called. Technically
//even across methods we probably don't make any formal guarantees but this
//is sufficient for current runtime implementations.