Anchor Tag fix
authorFelipe Pessoto <felipepessoto@hotmail.com>
Wed, 2 Mar 2016 00:17:37 +0000 (21:17 -0300)
committerFelipe Pessoto <felipepessoto@hotmail.com>
Wed, 2 Mar 2016 00:17:37 +0000 (21:17 -0300)
Commit migrated from https://github.com/dotnet/coreclr/commit/47a031987f97e8b703beb57b6c6780da0adea0b9

docs/coreclr/botr/threading.md

index 4eb8e34..2e13d52 100644 (file)
@@ -173,7 +173,7 @@ The [Rules of the Code](../coding-guidelines/clr-code-guide.md) document describ
 Crst
 ----
 
-Just as Monitor is the preferred locking mechanism for managed code, Crst is the preferred mechanism for VM code. Like Monitor, Crst is a hybrid lock that is aware of hosts and GC modes. Crst also implements deadlock avoidance via "lock leveling," described in the [Crst Leveling chapter of the BotR](../coding-guidelines/clr-code-guide.md#entering-and-leaving-crsts).
+Just as Monitor is the preferred locking mechanism for managed code, Crst is the preferred mechanism for VM code. Like Monitor, Crst is a hybrid lock that is aware of hosts and GC modes. Crst also implements deadlock avoidance via "lock leveling," described in the [Crst Leveling chapter of the BotR](../coding-guidelines/clr-code-guide.md#264-entering-and-leaving-crsts).
 
 It is generally illegal to acquire a Crst while in cooperative mode, though exceptions are made where absolutely necessary.