Update MissingClassDocumentation.xq

The check was incorrect because the IsPrivate attribute has values False, not false.
This commit is contained in:
Peter Villadsen 2019-11-26 13:59:17 -08:00 коммит произвёл GitHub
Родитель 6f02f9f1ce
Коммит 23b0e94b80
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -10,7 +10,7 @@ declare function functx:trim ( $arg as xs:string? ) as xs:string
<Diagnostics Category='Best practice' href='docs.microsoft.com/Socratex/MissingClassDocumentation' Version='1.0'>
{
for $c in /(Class | Table | Form | Query)[@IsPrivate = "false" and functx:trim(@Comments) = ""]
for $c in /(Class | Table | Form | Query)[lower-case(@IsPrivate) = "false" and functx:trim(@Comments) = ""]
return
<Diagnostic>
<Moniker>MissingClassDocumentation</Moniker>
@ -24,4 +24,4 @@ declare function functx:trim ( $arg as xs:string? ) as xs:string
<EndColumn>{string($c/@EndCol)}</EndColumn>
</Diagnostic>
}
</Diagnostics>
</Diagnostics>