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

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiao Luo <basehello@icloud.com>2021-02-27 00:51:05 +0300
committerGitHub <noreply@github.com>2021-02-27 00:51:05 +0300
commitb7fdf67d8cf928814f9795de7e6f91aafc3f27a0 (patch)
tree445fc80f91ba6beae91fa050d14f0068393d76bb /mdoc/mdoc.Test/BasicTests.cs
parent30de4375205b1f73f6372a416767ecc858b4ae6a (diff)
Naming unnamed parameter (#535)
Diffstat (limited to 'mdoc/mdoc.Test/BasicTests.cs')
-rw-r--r--mdoc/mdoc.Test/BasicTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc/mdoc.Test/BasicTests.cs b/mdoc/mdoc.Test/BasicTests.cs
index 6238a5a0..61f8bbb4 100644
--- a/mdoc/mdoc.Test/BasicTests.cs
+++ b/mdoc/mdoc.Test/BasicTests.cs
@@ -45,7 +45,7 @@ namespace mdoc.Test
throw new Exception($"Test was unable to find type {classname}");
}
- var typeDef = testclass.Resolve();
+ var typeDef = DocUtils.FixUnnamedParameters(testclass.Resolve());
typesCash.Add(classname, typeDef);
return typeDef;
}