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
path: root/src/tasks
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/tasks
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/tasks')
-rw-r--r--src/tasks/AndroidAppBuilder/ApkBuilder.cs4
-rw-r--r--src/tasks/Crossgen2Tasks/PrepareForReadyToRunCompilation.cs2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/tasks/AndroidAppBuilder/ApkBuilder.cs b/src/tasks/AndroidAppBuilder/ApkBuilder.cs
index 8ebff5d2683..ace6fcb0c0c 100644
--- a/src/tasks/AndroidAppBuilder/ApkBuilder.cs
+++ b/src/tasks/AndroidAppBuilder/ApkBuilder.cs
@@ -292,9 +292,9 @@ public class ApkBuilder
nativeLibraries += $" {componentLibToLink}{Environment.NewLine}";
}
- // There's a circular dependecy between static mono runtime lib and static component libraries.
+ // There's a circular dependency between static mono runtime lib and static component libraries.
// Adding mono runtime lib before and after component libs will resolve issues with undefined symbols
- // due to circular dependecy.
+ // due to circular dependency.
nativeLibraries += $" {monoRuntimeLib}{Environment.NewLine}";
}
diff --git a/src/tasks/Crossgen2Tasks/PrepareForReadyToRunCompilation.cs b/src/tasks/Crossgen2Tasks/PrepareForReadyToRunCompilation.cs
index f035a5617bb..a36ef188ba7 100644
--- a/src/tasks/Crossgen2Tasks/PrepareForReadyToRunCompilation.cs
+++ b/src/tasks/Crossgen2Tasks/PrepareForReadyToRunCompilation.cs
@@ -398,7 +398,7 @@ namespace Microsoft.NET.Build.Tasks
}
else
{
- // If previously compiled as R2R, treat as reference if this would be compiled seperately
+ // If previously compiled as R2R, treat as reference if this would be compiled separately
if (!compositeCompile || excludeFromComposite)
{
return Eligibility.CreateReferenceEligibility(excludeFromComposite);