@@ -327,7 +327,7 @@ public static Action<object, object> MakeFastPropertySetter(PropertyInfo propert
327
327
/// </summary>
328
328
/// <remarks>
329
329
/// The implementation of PropertyHelper will cache the property accessors per-type. This is
330
- /// faster when the the same type is used multiple times with ObjectToDictionary.
330
+ /// faster when the same type is used multiple times with ObjectToDictionary.
331
331
/// </remarks>
332
332
public static IDictionary < string , object > ObjectToDictionary ( object value )
333
333
{
@@ -453,7 +453,7 @@ protected static PropertyHelper[] GetVisibleProperties(
453
453
// the type to see if we should include it.
454
454
var ignoreProperty = false ;
455
455
456
- // Walk up the hierarchy until we find the type that actally declares this
456
+ // Walk up the hierarchy until we find the type that actually declares this
457
457
// PropertyInfo.
458
458
var currentTypeInfo = type . GetTypeInfo ( ) ;
459
459
var declaringTypeInfo = declaringType . GetTypeInfo ( ) ;
@@ -514,7 +514,7 @@ protected static PropertyHelper[] GetProperties(
514
514
// Indexed properties are not useful (or valid) for grabbing properties off an object.
515
515
private static bool IsInterestingProperty ( PropertyInfo property )
516
516
{
517
- // For imporving application startup time, do not use GetIndexParameters() api early in this check as it
517
+ // For improving application startup time, do not use GetIndexParameters() api early in this check as it
518
518
// creates a copy of parameter array and also we would like to check for the presence of a get method
519
519
// and short circuit asap.
520
520
return property . GetMethod != null &&
0 commit comments