aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Persistence
diff options
context:
space:
mode:
authorJPVenson <ger-delta-07@hotmail.de>2024-10-09 21:03:57 +0200
committerGitHub <noreply@github.com>2024-10-09 21:03:57 +0200
commit473628ba3a9f68479e0051e76594dc47f7fa08f3 (patch)
tree22d88e7a496da987a48892dd8ae665e19c7dc6b6 /MediaBrowser.Controller/Persistence
parent5267851e64e12ec79975d31e571466274abd02bc (diff)
Apply suggestions from code review
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'MediaBrowser.Controller/Persistence')
-rw-r--r--MediaBrowser.Controller/Persistence/IItemTypeLookup.cs2
-rw-r--r--MediaBrowser.Controller/Persistence/IPeopleRepository.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Persistence/IItemTypeLookup.cs b/MediaBrowser.Controller/Persistence/IItemTypeLookup.cs
index 1b2ca2acb5..6ad8380d7c 100644
--- a/MediaBrowser.Controller/Persistence/IItemTypeLookup.cs
+++ b/MediaBrowser.Controller/Persistence/IItemTypeLookup.cs
@@ -51,7 +51,7 @@ public interface IItemTypeLookup
public IReadOnlyList<BaseItemKind> ArtistsTypes { get; }
/// <summary>
- /// Gets mapping for all BaseItemKinds and their expected serialisaition target.
+ /// Gets mapping for all BaseItemKinds and their expected serialization target.
/// </summary>
public IDictionary<BaseItemKind, string?> BaseItemKindNames { get; }
}
diff --git a/MediaBrowser.Controller/Persistence/IPeopleRepository.cs b/MediaBrowser.Controller/Persistence/IPeopleRepository.cs
index 43a24703e4..418289cb4c 100644
--- a/MediaBrowser.Controller/Persistence/IPeopleRepository.cs
+++ b/MediaBrowser.Controller/Persistence/IPeopleRepository.cs
@@ -14,7 +14,7 @@ public interface IPeopleRepository
/// Gets the people.
/// </summary>
/// <param name="filter">The query.</param>
- /// <returns>List&lt;PersonInfo&gt;.</returns>
+ /// <returns>The list of people matching the filter.</returns>
IReadOnlyList<PersonInfo> GetPeople(InternalPeopleQuery filter);
/// <summary>
@@ -28,6 +28,6 @@ public interface IPeopleRepository
/// Gets the people names.
/// </summary>
/// <param name="filter">The query.</param>
- /// <returns>List&lt;System.String&gt;.</returns>
+ /// <returns>The list of people names matching the filter.</returns>
IReadOnlyList<string> GetPeopleNames(InternalPeopleQuery filter);
}