diff options
author | John Doe <github.john.doe@outlook.com> | 2018-08-29 14:46:52 -0700 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2018-08-29 14:46:52 -0700 |
commit | 4c7c066d0bacdb86a2311333de1ca73d94ae5280 (patch) | |
tree | 4fe84e217d24f066e02b5cb2e5621696453d9628 /Documentation/project-docs | |
parent | 8bc0e5e39a3805fa707f366f2a1189e2b25d43b6 (diff) | |
download | coreclr-4c7c066d0bacdb86a2311333de1ca73d94ae5280.tar.gz coreclr-4c7c066d0bacdb86a2311333de1ca73d94ae5280.tar.bz2 coreclr-4c7c066d0bacdb86a2311333de1ca73d94ae5280.zip |
Typos (#19737)
* testsing -> testing
* reclaming -> reclaiming
* oppurtunity -> opportunity
* implemenation -> implementation
* indicaates -> indicates
* enregisterd -> enregistered
* compuations -> computations
* convinient -> convenient
* intution -> intuition
* Communicaton -> Communication
Diffstat (limited to 'Documentation/project-docs')
-rw-r--r-- | Documentation/project-docs/dotnet-filenames.md | 2 | ||||
-rw-r--r-- | Documentation/project-docs/glossary.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/project-docs/dotnet-filenames.md b/Documentation/project-docs/dotnet-filenames.md index e12f05b18f..7a228d0f96 100644 --- a/Documentation/project-docs/dotnet-filenames.md +++ b/Documentation/project-docs/dotnet-filenames.md @@ -4,7 +4,7 @@ .NET has had many mysterious filenames over time. This document defines their purpose. - coreclr.dll: The implementation of CoreCLR. -- clr.dll: The implemenation of the .NET Framework CLR since the .NET Framework 4. +- clr.dll: The implementation of the .NET Framework CLR since the .NET Framework 4. - mscorwks.dll: The .NET Framework CLR implementation up until version 2/3.5. It was called "wks" (pronounced "works") because it originally contained the client or "workstation" GC. Up until the .NET Framework 2, there was another variant of the CLR that contained the "server" GC, called mscorsvr.dll. In the .NET Framework 2 release, the workstation and server GC were merged together in a single implementation, in mscorwks.dll, while mscorsvr.dll was deprecated. - mscorsvr.dll: See mscorwks.dll. - mscordacwks: A variant of mscorwks.dll (for the .NET Framework CLR), used only/primarily while debugging. It contains the "DAC" version of the VM implementation. diff --git a/Documentation/project-docs/glossary.md b/Documentation/project-docs/glossary.md index 41c5050791..00a8210bd6 100644 --- a/Documentation/project-docs/glossary.md +++ b/Documentation/project-docs/glossary.md @@ -16,7 +16,7 @@ As much as possible, we should link to the most authoritative and recent source | DAC | Data Access Component. An abstraction layer over the internal structures in the runtime. | | EE | Execution Engine. | | GC | [Garbage Collector](https://github.com/dotnet/coreclr/blob/master/Documentation/botr/garbage-collection.md). | -| IPC | Inter-Process Communicaton. | +| IPC | Inter-Process Communication. | | JIT | [Just-in-Time](https://github.com/dotnet/coreclr/blob/master/Documentation/botr/ryujit-overview.md) compiler. RyuJIT is the code name for the next generation Just-in-Time(aka "JIT") for the .NET runtime. | | LCG | Lightweight Code Generation. An early name for [dynamic methods](https://github.com/dotnet/coreclr/blob/master/src/System.Private.CoreLib/src/System/Reflection/Emit/DynamicMethod.cs). | | MD | MetaData. | |