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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Fuchs <thomas.fuchs91@gmail.com>2016-04-08 14:20:26 +0300
committerThomas Fuchs <thomas.fuchs91@gmail.com>2016-04-08 14:20:26 +0300
commitb47ef80d285610f79aad64aaaf2734a53fe774bd (patch)
tree5c5fefadb76ea09eba2e2079457364a3a3df5787 /Documentation
parenta1610d05683d802d60ec62791474b62c9c3defda (diff)
Typo in intro-to-coretr.md
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/intro-to-corert.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/intro-to-corert.md b/Documentation/intro-to-corert.md
index e4faa1d7f..15dbbcda5 100644
--- a/Documentation/intro-to-corert.md
+++ b/Documentation/intro-to-corert.md
@@ -17,7 +17,7 @@ Experience
- The native compiler generates a *SINGLE FILE*, including the app, managed dependencies and CoreRT.
- Native compiled apps startup faster since they execute already compiled code. They don't need to generate machine code at runtime nor load a JIT compiler.
-- Native compiled apps can use an optimizing compiler, resulting in faster throughput from higher quality code (C++ compiler optimizations). Both the LLILLC and IL to CPP compilers rely on optimizing compiers.
+- Native compiled apps can use an optimizing compiler, resulting in faster throughput from higher quality code (C++ compiler optimizations). Both the LLILLC and IL to CPP compilers rely on optimizing compilers.
These benefits open up some new scenarios for .NET developers