summaryrefslogtreecommitdiff
path: root/Documentation/botr/method-descriptor.md
diff options
context:
space:
mode:
authorDrew Noakes <git@drewnoakes.com>2018-08-22 13:54:20 +0100
committerJan Kotas <jkotas@microsoft.com>2018-08-22 05:54:20 -0700
commitfea6dcacb820057eb24a25b97c337b5dcf881301 (patch)
treee1b3bd468f01293affa95405ad8f5a3038b6eaf0 /Documentation/botr/method-descriptor.md
parent4804b07868d3da2c69a31469bdae9365a63739be (diff)
downloadcoreclr-fea6dcacb820057eb24a25b97c337b5dcf881301.tar.gz
coreclr-fea6dcacb820057eb24a25b97c337b5dcf881301.tar.bz2
coreclr-fea6dcacb820057eb24a25b97c337b5dcf881301.zip
Fix broken documentation links into mscorlib code (#19598)
Diffstat (limited to 'Documentation/botr/method-descriptor.md')
-rw-r--r--Documentation/botr/method-descriptor.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/botr/method-descriptor.md b/Documentation/botr/method-descriptor.md
index 1125679893..14cf19f85c 100644
--- a/Documentation/botr/method-descriptor.md
+++ b/Documentation/botr/method-descriptor.md
@@ -91,7 +91,7 @@ The slot is either in MethodTable or in MethodDesc itself. The location of the s
The slot is stored in MethodTable for methods that require efficient lookup via slot index, e.g. virtual methods or methods on generic types. The MethodDesc contains the slot index to allow fast lookup of the entry point in this case.
-Otherwise, the slot is part of the MethodDesc itself. This arrangement improves data locality and saves working set. Also, it is not even always possible to preallocate a slot in a MethodTable upfront for dynamically created MethodDescs, such as for methods added by Edit & Continue, instantiations of generic methods or [dynamic methods](https://github.com/dotnet/coreclr/blob/master/src/mscorlib/src/System/Reflection/Emit/DynamicMethod.cs).
+Otherwise, the slot is part of the MethodDesc itself. This arrangement improves data locality and saves working set. Also, it is not even always possible to preallocate a slot in a MethodTable upfront for dynamically created MethodDescs, such as for methods added by Edit & Continue, instantiations of generic methods or [dynamic methods](https://github.com/dotnet/coreclr/blob/master/src/System.Private.CoreLib/src/System/Reflection/Emit/DynamicMethod.cs).
MethodDesc Chunks
-----------------