diff --git a/Kyoo.Common/Controllers/ILibraryManager.cs b/Kyoo.Common/Controllers/ILibraryManager.cs
index d15987de..6c100622 100644
--- a/Kyoo.Common/Controllers/ILibraryManager.cs
+++ b/Kyoo.Common/Controllers/ILibraryManager.cs
@@ -18,7 +18,7 @@ namespace Kyoo.Controllers
/// Get the repository corresponding to the T item.
///
/// The type you want
- /// If the item is not found
+ /// If the item is not found
/// The repository corresponding
IRepository GetRepository() where T : class, IResource;
@@ -82,7 +82,7 @@ namespace Kyoo.Controllers
///
/// The id of the resource
/// The type of the resource
- /// If the item is not found
+ /// If the item is not found
/// The resource found
Task Get(int id) where T : class, IResource;
@@ -91,7 +91,7 @@ namespace Kyoo.Controllers
///
/// The slug of the resource
/// The type of the resource
- /// If the item is not found
+ /// If the item is not found
/// The resource found
Task Get(string slug) where T : class, IResource;
@@ -100,7 +100,7 @@ namespace Kyoo.Controllers
///
/// The filter function.
/// The type of the resource
- /// If the item is not found
+ /// If the item is not found
/// The first resource found that match the where function
Task Get(Expression> where) where T : class, IResource;
@@ -109,7 +109,7 @@ namespace Kyoo.Controllers
///
/// The id of the show
/// The season's number
- /// If the item is not found
+ /// If the item is not found
/// The season found
Task Get(int showID, int seasonNumber);
@@ -118,7 +118,7 @@ namespace Kyoo.Controllers
///
/// The slug of the show
/// The season's number
- /// If the item is not found
+ /// If the item is not found
/// The season found
Task Get(string showSlug, int seasonNumber);
@@ -128,7 +128,7 @@ namespace Kyoo.Controllers
/// The id of the show
/// The season's number
/// The episode's number
- /// If the item is not found
+ /// If the item is not found
/// The episode found
Task Get(int showID, int seasonNumber, int episodeNumber);
@@ -138,7 +138,7 @@ namespace Kyoo.Controllers
/// The slug of the show
/// The season's number
/// The episode's number
- /// If the item is not found
+ /// If the item is not found
/// The episode found
Task Get(string showSlug, int seasonNumber, int episodeNumber);
@@ -147,7 +147,7 @@ namespace Kyoo.Controllers
///
/// The slug of the track
/// The type (Video, Audio or Subtitle)
- /// If the item is not found
+ /// If the item is not found
/// The tracl found
Task