From 7d64079ca36487ca715e3d36d22101a9b720a715 Mon Sep 17 00:00:00 2001 From: carlossanlop Date: Thu, 3 Sep 2020 13:29:34 -0700 Subject: [PATCH 1/2] Fix double asterisk, add extra type summary --- xml/Microsoft.Build.Globbing/MSBuildGlob.xml | 6 +++--- xml/System.Net.Security/SslClientHelloInfo.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xml/Microsoft.Build.Globbing/MSBuildGlob.xml b/xml/Microsoft.Build.Globbing/MSBuildGlob.xml index 5aa3e461cb7..1349c193e2b 100644 --- a/xml/Microsoft.Build.Globbing/MSBuildGlob.xml +++ b/xml/Microsoft.Build.Globbing/MSBuildGlob.xml @@ -21,9 +21,9 @@ Represents a parsed MSBuild glob. An MSBuild glob is composed of three parts: - - fixed directory part: "a/b/" in "a/b/**/*test*/**/*.cs" - - wildcard directory part: "**/*test*/**/" in "a/b/**/*test*/**/*.cs" - - file name part: "*.cs" in "a/b/**/*test*/**/*.cs" + - fixed directory part: a/b/ in a/b/**/*test*/**/*.cs + - wildcard directory part: **/*test*/**/ in a/b/**/*test*/**/*.cs + - file name part: *.cs in a/b/**/*test*/**/*.cs To be added. diff --git a/xml/System.Net.Security/SslClientHelloInfo.xml b/xml/System.Net.Security/SslClientHelloInfo.xml index 8267915bd2c..93b422c17e3 100644 --- a/xml/System.Net.Security/SslClientHelloInfo.xml +++ b/xml/System.Net.Security/SslClientHelloInfo.xml @@ -20,7 +20,7 @@ - To be added. + This struct contains information from received TLS Client Hello frame. To be added. From c4914a2a753b739842a9ee3f76e002e4603fcc7a Mon Sep 17 00:00:00 2001 From: Carlos Sanchez <1175054+carlossanlop@users.noreply.github.com> Date: Thu, 3 Sep 2020 14:16:18 -0700 Subject: [PATCH 2/2] Update xml/Microsoft.Build.Globbing/MSBuildGlob.xml --- xml/Microsoft.Build.Globbing/MSBuildGlob.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xml/Microsoft.Build.Globbing/MSBuildGlob.xml b/xml/Microsoft.Build.Globbing/MSBuildGlob.xml index 1349c193e2b..cd85b6e054f 100644 --- a/xml/Microsoft.Build.Globbing/MSBuildGlob.xml +++ b/xml/Microsoft.Build.Globbing/MSBuildGlob.xml @@ -21,9 +21,9 @@ Represents a parsed MSBuild glob. An MSBuild glob is composed of three parts: - - fixed directory part: a/b/ in a/b/**/*test*/**/*.cs - - wildcard directory part: **/*test*/**/ in a/b/**/*test*/**/*.cs - - file name part: *.cs in a/b/**/*test*/**/*.cs + - fixed directory part: a/b/ in a/b/\*\*/*test\*/\*\*/\*.cs + - wildcard directory part: \*\*/\*test\*/\*\*/ in a/b/\*\*/\*test\*/\*\*/\*.cs + - file name part: \*.cs in a/b/\*\*/\*test\*/\*\*/\*.cs To be added.