Skip to content

Commit b83cf97

Browse files
author
Brian Melton
committed
Updating method comments to reflect functionality
1 parent ac0d2d1 commit b83cf97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/GraphODataTemplateWriter/Extensions/OdcmModelExtensions.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ public static string[] GetLongDescriptionSegments(this OdcmObject odcmObject)
293293
return null;
294294
}
295295

296-
/// Returns the complete list of methods supported by this OdcmObject, including its overloads
296+
/// Returns a List containing the supplied method plus its overloads
297297
public static List<OdcmMethod> WithOverloads(this OdcmMethod odcmMethod)
298298
{
299299
var methods = new List<OdcmMethod>();
@@ -302,6 +302,7 @@ public static List<OdcmMethod> WithOverloads(this OdcmMethod odcmMethod)
302302
return methods;
303303
}
304304

305+
/// Returns a List containing the supplied class' methods plus their overloads
305306
public static List<OdcmMethod> MethodsAndOverloads(this OdcmClass odcmClass)
306307
{
307308
var allMethods = new List<OdcmMethod>();

0 commit comments

Comments
 (0)