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:
authorJoel Martinez <joelmartinez@gmail.com>2020-01-17 04:54:22 +0300
committerJoel Martinez <joelmartinez@gmail.com>2020-01-17 05:19:28 +0300
commit63f0836cd14f32d9e44dc811d1bb2ee1340ee25e (patch)
tree89dd6d0acb0712c02c303df11f7924a28176afe0 /mdoc/Test/en.expected-fsharp-wsl
parent1ec02bfd5aac5d25e9152efeca09022ff1a621ad (diff)
Adds tuple and nullable support for C# formatter
Diffstat (limited to 'mdoc/Test/en.expected-fsharp-wsl')
-rw-r--r--mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate1.xml2
-rw-r--r--mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate9.xml2
-rw-r--r--mdoc/Test/en.expected-fsharp-wsl/PatternMatching/PatternMatchingExamples.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate1.xml b/mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate1.xml
index cb75bbdd..f77ac896 100644
--- a/mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate1.xml
+++ b/mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate1.xml
@@ -1,5 +1,5 @@
<Type Name="Delegates+Delegate1" FullName="Delegates+Delegate1">
- <TypeSignature Language="C#" Value="public delegate int Delegates.Delegate1(Tuple&lt;int,int&gt; );" />
+ <TypeSignature Language="C#" Value="public delegate int Delegates.Delegate1((int,int) );" />
<TypeSignature Language="ILAsm" Value=".class nested public auto ansi serializable sealed Delegates/Delegate1 extends System.MulticastDelegate" />
<TypeSignature Language="F#" Value="type Delegates.Delegate1 = delegate of (int * int) -&gt; int" />
<AssemblyInfo>
diff --git a/mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate9.xml b/mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate9.xml
index ae354028..2d37408e 100644
--- a/mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate9.xml
+++ b/mdoc/Test/en.expected-fsharp-wsl/Delegates+Delegate9.xml
@@ -1,5 +1,5 @@
<Type Name="Delegates+Delegate9" FullName="Delegates+Delegate9">
- <TypeSignature Language="C#" Value="public delegate char Delegates.Delegate9(Tuple&lt;int,int&gt; );" />
+ <TypeSignature Language="C#" Value="public delegate char Delegates.Delegate9((int,int) );" />
<TypeSignature Language="ILAsm" Value=".class nested public auto ansi serializable sealed Delegates/Delegate9 extends System.MulticastDelegate" />
<TypeSignature Language="F#" Value="type Delegates.Delegate9 = delegate of (int * int) -&gt; char" />
<AssemblyInfo>
diff --git a/mdoc/Test/en.expected-fsharp-wsl/PatternMatching/PatternMatchingExamples.xml b/mdoc/Test/en.expected-fsharp-wsl/PatternMatching/PatternMatchingExamples.xml
index 1312955e..f662eb63 100644
--- a/mdoc/Test/en.expected-fsharp-wsl/PatternMatching/PatternMatchingExamples.xml
+++ b/mdoc/Test/en.expected-fsharp-wsl/PatternMatching/PatternMatchingExamples.xml
@@ -576,7 +576,7 @@
</Docs>
</Member>
<Member MemberName="tuple1">
- <MemberSignature Language="C#" Value="public static Tuple&lt;int,int&gt; tuple1 { get; }" />
+ <MemberSignature Language="C#" Value="public static (int,int) tuple1 { get; }" />
<MemberSignature Language="ILAsm" Value=".property class System.Tuple`2&lt;int32, int32&gt; tuple1" />
<MemberSignature Language="F#" Value="PatternMatching.PatternMatchingExamples.tuple1 : int * int" Usage="PatternMatching.PatternMatchingExamples.tuple1" />
<MemberType>Property</MemberType>