From cc1b8d095aebd79692d945f90e2b03fd71a132b7 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Wed, 14 Mar 2012 22:45:17 +0000 Subject: [PATCH] Fixed an invalid XML comment git-svn-id: file:///srv/devel/repo-conversion/nusu@280 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/TypeHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/TypeHelper.cs b/Source/TypeHelper.cs index 9a66272..6563d54 100644 --- a/Source/TypeHelper.cs +++ b/Source/TypeHelper.cs @@ -170,7 +170,7 @@ namespace Nuclex.Support { /// /// Type that will be checked for presence of the specified attribute /// - /// Attribute the type will be checked for + /// Attribute the type will be checked for /// True if the type has the specified attribute, otherwise false public static bool HasAttribute(this Type type, Type attributeType) { object[] attributes = type.GetCustomAttributes(attributeType, true);