Fixes some documentation issues

This commit is contained in:
Serraniel 2023-03-24 18:14:13 +01:00
parent b62c04bbb5
commit 6badbebc12
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ public abstract class AttributedQueryFilterBuilder : IQueryFilterBuilder
var paramName = attribute.ParamName ?? propertyInfo.Name;
var value = propertyInfo.GetValue(this)?.ToString();
if (!string.IsNullOrEmpty(value)) filterBucket.Add(new KeyValuePair<string, string>(paramName, value));
if (!string.IsNullOrEmpty(value)) filterBucket.Add(new KeyValuePair<string, string>(paramName, value!));
}
var filterBuilder = new StringBuilder();

View file

@ -46,7 +46,7 @@ public class CardQueryFilterBuilder : AttributedQueryFilterBuilder
public int? Uuid { get; set; }
/// <summary>
/// Sets a filter for the <see cref="Card.Rarity/>.
/// Sets a filter for the <see cref="Card.Rarity" />.
///
/// </summary>
[QueryFilterName("rarity")]