docs(iec62304): [REL-1.0.2] validate and curate XML doc review markers

This commit is contained in:
n8n IEC 62304 Bot
2026-07-02 12:21:44 +02:00
parent 609c601fe1
commit 7de114a95a
@@ -1434,6 +1434,8 @@ public class MasterListRepository<T> : MongoRepository<T>, IMasterListRepository
/// <param name="sort">Sort definition for the query results.</param>
/// <returns>A fluent queryable for T results.</returns>
/// <!-- aidoc:v1 sig=704d715 body=2a35652 -->
/// <!-- aidoc-review:v1 severity=low kind=wrong_summary
/// "Summary states the method creates a fluent query 'for paginated results', but the method body only applies combined filters and sort and performs no pagination (no Skip/Limit). The returned IFindFluent merely supports pagination by the caller." -->
private IFindFluent<T, T> CreateFindFluent(List<FilterDefinition<T>> filters, SortDefinition<T> sort)
{
var combinedFilter = filters.Any()
@@ -1491,6 +1493,8 @@ public class MasterListRepository<T> : MongoRepository<T>, IMasterListRepository
/// <param name="input">The input string to build the pattern from.</param>
/// <returns>A regex-compatible pattern string.</returns>
/// <!-- aidoc:v1 sig=2992c00 body=ae88daf -->
/// <!-- aidoc-review:v1 severity=low kind=stale_summary
/// "Documentation lists only á, é, í, ó, ú as supported Spanish accents, but the code also handles à, ä, â, è, ë, ê, ì, ï, î, ò, ö, ô, ù, ü, û for each vowel." -->
private static string BuildRegexPattern(string input)
{
var regexPattern = new StringBuilder();