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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2016-01-07 04:52:24 +0300
committerAndrew Arnott <andrewarnott@gmail.com>2016-01-07 04:52:24 +0300
commit31956ee7f082d3a662becd0ed2ed896ba21cae64 (patch)
tree118a54a80684ad749d7e73a7d79323b4d45a01e0 /Documentation/coding-guidelines
parent2ffca15c3f879802dc4793722a3b61ef4e0331ff (diff)
Fix spelling error in doc
Diffstat (limited to 'Documentation/coding-guidelines')
-rw-r--r--Documentation/coding-guidelines/package-projects.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/coding-guidelines/package-projects.md b/Documentation/coding-guidelines/package-projects.md
index 24482c41f3..201c90990a 100644
--- a/Documentation/coding-guidelines/package-projects.md
+++ b/Documentation/coding-guidelines/package-projects.md
@@ -1,7 +1,7 @@
# Package projects
Package projects bring together all the assemblies that make up a library on different platforms into a set of NuGet packages.
-## Package heirarchy
+## Package hierarchy
All libraries should have at least one package if they represent public surface area. This is called the *reference package* and is named the same as the library's assembly, EG: System.Collections.Immutable.
Packages may have platform specific implementation packages. These are referred to as *runtime packages* and follow the naming convention of runtime.{rid}.{assemblyName}, EG: runtime.unix.System.IO.FileSystem.