summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorMatt Warren <matt.warren@live.co.uk>2018-07-16 19:50:49 +0100
committerJan Kotas <jkotas@microsoft.com>2018-07-16 11:50:49 -0700
commitc389865009b7f000a7d477edf7a3f3fe6c877d77 (patch)
tree09dec3b40569ce5a661ffc2efb93a25ee5df00e0 /Documentation
parentd3fe9a89a769df0bfcfa65a4e97eeb6b081626a7 (diff)
downloadcoreclr-c389865009b7f000a7d477edf7a3f3fe6c877d77.tar.gz
coreclr-c389865009b7f000a7d477edf7a3f3fe6c877d77.tar.bz2
coreclr-c389865009b7f000a7d477edf7a3f3fe6c877d77.zip
Fixing markdown list formatting (#18936)
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/botr/intro-to-clr.md24
1 files changed, 11 insertions, 13 deletions
diff --git a/Documentation/botr/intro-to-clr.md b/Documentation/botr/intro-to-clr.md
index 097f2e30fd..f713b414d8 100644
--- a/Documentation/botr/intro-to-clr.md
+++ b/Documentation/botr/intro-to-clr.md
@@ -53,19 +53,17 @@ It is this dedication to ease of use (which goes hand in hand with simplicity of
The runtime has many features, so it is useful to categorize them as follows:
-1. Fundamental features – Features that have broad impact on the design of other features. These include:
- a. Garbage Collection
- b. Memory Safety and Type Safety
- c. High level support for programming languages.
-
-2. Secondary features – Features enabled by the fundamental features that may not be required by many useful programs:
- a. Program isolation with AppDomains
- b. Program Security and sandboxing
-
-3. Other Features – Features that all runtime environments need but that do not leverage the fundamental features of the CLR. Instead, they are the result of the desire to create a complete programming environment. Among them are:
- a. Versioning
- b. Debugging/Profiling
- c. Interoperation
+1. **Fundamental features** – Features that have broad impact on the design of other features. These include:
+ 1. Garbage Collection
+ 2. Memory Safety and Type Safety
+ 3. High level support for programming languages.
+2. **Secondary features** – Features enabled by the fundamental features that may not be required by many useful programs:
+ 1. Program isolation with AppDomains
+ 2. Program Security and sandboxing
+3. **Other Features** – Features that all runtime environments need but that do not leverage the fundamental features of the CLR. Instead, they are the result of the desire to create a complete programming environment. Among them are:
+ 1. Versioning
+ 2. Debugging/Profiling
+ 3. Interoperation
## The CLR Garbage Collector (GC)