Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorRolf Bjarne Kvinge <rolf@xamarin.com>2018-09-19 19:19:00 +0300
committerLudovic Henry <luhenry@microsoft.com>2018-09-19 19:19:00 +0300
commitd2d8bb81cf6c33b3498a0bd9b1b4e25574138fcd (patch)
tree0c73c5a1a3fb84e0092c2a9ee209da2ac14df56a /mcs
parente297740cdfd70bacea50e177f9a330a0b47c8311 (diff)
[mono-api-html] Fix rendering of nuint. (#10662)
Diffstat (limited to 'mcs')
-rw-r--r--mcs/tools/mono-api-html/Helpers.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tools/mono-api-html/Helpers.cs b/mcs/tools/mono-api-html/Helpers.cs
index ecad60e5709..c9e8182c280 100644
--- a/mcs/tools/mono-api-html/Helpers.cs
+++ b/mcs/tools/mono-api-html/Helpers.cs
@@ -180,7 +180,7 @@ namespace Mono.ApiTools {
case "System.nint":
return "nint";
case "System.nuint":
- return "uint";
+ return "nuint";
case "System.nfloat":
return "nfloat";
case "System.IntPtr":