From 36ab5c61c6735160223d8212ec92b6be3d504b90 Mon Sep 17 00:00:00 2001 From: Steve Harter Date: Fri, 4 Oct 2024 10:41:37 -0500 Subject: [PATCH 1/2] Add missing doc for ICustomTypeDescriptor --- .../ICustomTypeDescriptor.xml | 43 +++++++++++++++---- 1 file changed, 34 insertions(+), 9 deletions(-) diff --git a/xml/System.ComponentModel/ICustomTypeDescriptor.xml b/xml/System.ComponentModel/ICustomTypeDescriptor.xml index 4cd0123b456..1c53d90d734 100644 --- a/xml/System.ComponentModel/ICustomTypeDescriptor.xml +++ b/xml/System.ComponentModel/ICustomTypeDescriptor.xml @@ -332,9 +332,16 @@ - Gets a type converter for this object that may be registered. - To be added. - To be added. + Returns a type converter for this instance of a component that may be registered. + A that is the converter for this object, or if there is no for this object. + + . + + ]]> + @@ -678,9 +685,18 @@ - Gets the events for this instance of a component that may be registered. - To be added. - To be added. + Returns the events for this instance of a component that may be registered. + An that represents the events for this component instance. + + if no properties are specified. This method should never return `null`. + + ]]> + @@ -856,9 +872,18 @@ - Gets the properties for this instance of a component that may be registered. - To be added. - To be added. + Returns the properties for this instance of a component that may be registered. + A that represents the properties for this component instance. + + if no properties are specified. This method should never return `null`. + + ]]> + From 4f53264db0a2d480c0c5201f3c9fa62e85908fa9 Mon Sep 17 00:00:00 2001 From: Steve Harter Date: Fri, 4 Oct 2024 12:50:58 -0500 Subject: [PATCH 2/2] change 'may' to 'might' --- xml/System.ComponentModel/ICustomTypeDescriptor.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xml/System.ComponentModel/ICustomTypeDescriptor.xml b/xml/System.ComponentModel/ICustomTypeDescriptor.xml index 1c53d90d734..4cb0f786580 100644 --- a/xml/System.ComponentModel/ICustomTypeDescriptor.xml +++ b/xml/System.ComponentModel/ICustomTypeDescriptor.xml @@ -332,7 +332,7 @@ - Returns a type converter for this instance of a component that may be registered. + Returns a type converter for this instance of a component that might be registered. A that is the converter for this object, or if there is no for this object. - Returns the events for this instance of a component that may be registered. + Returns the events for this instance of a component that might be registered. An that represents the events for this component instance. - Returns the properties for this instance of a component that may be registered. + Returns the properties for this instance of a component that might be registered. A that represents the properties for this component instance.