aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Persistence/IPeopleRepository.cs
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/IPeopleRepository.cs
parent5267851e64e12ec79975d31e571466274abd02bc (diff)
Apply suggestions from code review
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'MediaBrowser.Controller/Persistence/IPeopleRepository.cs')
-rw-r--r--MediaBrowser.Controller/Persistence/IPeopleRepository.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Persistence/IPeopleRepository.cs b/MediaBrowser.Controller/Persistence/IPeopleRepository.cs
index 43a24703e..418289cb4 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);
}