From abe474b66259cff0c15579732968b8f424e61d4d Mon Sep 17 00:00:00 2001 From: Michael D Date: Mon, 8 Oct 2018 23:10:15 +0200 Subject: [PATCH] Fix typo in intptr-operators --- proposals/intptr-operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/intptr-operators.md b/proposals/intptr-operators.md index 77d2778b..c5139bfa 100644 --- a/proposals/intptr-operators.md +++ b/proposals/intptr-operators.md @@ -23,7 +23,7 @@ This interop code often has to deal with handles, unmanaged memory, or even just The runtime provides support for this by defining a set of operators that can be used on the `native int` (`System.IntPtr`) and `native unsigned int` (`System.UIntPtr`) primitive types. -C# has never supported these operators and so users have to workaround the issue. This often increases code complexity and lowers code maintainability. +C# has never supported these operators and so users have to work around the issue. This often increases code complexity and lowers code maintainability. As such, the language should begin to support these operators to help advance the language to better support these requirements.