Fix comment: "ThreadLocal" -> "ThreadStatic" as used in code (#32887)
authorAlexander Speshilov <speshuric@mail.ru>
Thu, 27 Feb 2020 00:59:07 +0000 (03:59 +0300)
committerGitHub <noreply@github.com>
Thu, 27 Feb 2020 00:59:07 +0000 (16:59 -0800)
Comment aligned with actual attribute name in code

src/libraries/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/CompilerServices/IDOBinder.vb

index e21cca5..8abb2db 100644 (file)
@@ -29,7 +29,7 @@ Namespace Microsoft.VisualBasic.CompilerServices
             ' We need to pass the CopyBack value from the VB binder through
             ' the DLR and into the Fallback.  Unfortunately the DLR APIs provide
             ' no obvious way to get the value from one place to the other.  So
-            ' we store its value in a ThreadLocal here.
+            ' we store its value in a ThreadStatic here.
             <ThreadStatic()>
             Private Shared s_savedCopyBack As Boolean()