From 86f9501147fafe2808e062e35a894425b6b4e236 Mon Sep 17 00:00:00 2001 From: Jonathon Rossi Date: Mon, 16 Feb 2015 15:17:17 +1000 Subject: [PATCH] Fixed syntax error in example code in mscorlib.md --- Documentation/mscorlib.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/mscorlib.md b/Documentation/mscorlib.md index c3e72de..23c0853 100644 --- a/Documentation/mscorlib.md +++ b/Documentation/mscorlib.md @@ -85,7 +85,7 @@ Do not replicate the comments into your actual QCall implementation. This is for // All QCalls should have the following DllImport and // SuppressUnmanagedCodeSecurity attributes [DllImport(JitHelpers.QCall, CharSet = CharSet.Unicode)] - SuppressUnmanagedCodeSecurity] + [SuppressUnmanagedCodeSecurity] // QCalls should always be static extern. private static extern bool Bar(int flags, string inString, StringHandleOnStack retString); -- 2.7.4