Fixed an invalid XML comment

git-svn-id: file:///srv/devel/repo-conversion/nusu@280 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2012-03-14 22:45:17 +00:00
parent c5eb234eef
commit cc1b8d095a

View File

@ -170,7 +170,7 @@ namespace Nuclex.Support {
/// <param name="type">
/// Type that will be checked for presence of the specified attribute
/// </param>
/// <name="attributeType">Attribute the type will be checked for</typeparam>
/// <param name="attributeType">Attribute the type will be checked for</typeparam>
/// <returns>True if the type has the specified attribute, otherwise false</returns>
public static bool HasAttribute(this Type type, Type attributeType) {
object[] attributes = type.GetCustomAttributes(attributeType, true);