summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChristian Scheuer <sigurd@?.com>2017-08-02 02:30:32 +0200
committerChristian Scheuer <sigurd@?.com>2017-08-02 02:30:32 +0200
commitaa29a1edb036636ac4e0f156da05cb9f36cb0a44 (patch)
tree7d48f0cac6edab61f88accaeef28642d51914812 /README.md
parentca006da16473f009ef0bc74ea2394d244258c2cf (diff)
downloadcoreclr-aa29a1edb036636ac4e0f156da05cb9f36cb0a44.tar.gz
coreclr-aa29a1edb036636ac4e0f156da05cb9f36cb0a44.tar.bz2
coreclr-aa29a1edb036636ac4e0f156da05cb9f36cb0a44.zip
Fix reference to System.Threading.Thread class
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7994879609..f6ab4c03a0 100644
--- a/README.md
+++ b/README.md
@@ -68,7 +68,7 @@ It also contains the source code for the following closely related support packa
By itself, the `Microsoft.NETCore.Runtime.CoreCLR` package is actually not enough to do much.
One reason for this is that the CoreCLR package tries to minimize the amount of the class library that it implements.
Only types that have a strong dependency on the internal workings of the runtime are included (e.g,
-`System.Object`, `System.String`, `System.Thread`, `System.Threading.Tasks.Task` and most foundational interfaces).
+`System.Object`, `System.String`, `System.Threading.Thread`, `System.Threading.Tasks.Task` and most foundational interfaces).
Instead most of the class library is implemented as independent Nuget packages that simply use the .NET Core
runtime as a dependency. Many of the most familiar classes (`System.Collections`, `System.IO`, `System.Xml` and
so on), live in packages defined in the [dotnet/corefx](https://github.com/dotnet/corefx) repository.