diff --git a/TMDbLib/Objects/Discover/DiscoverTv.cs b/TMDbLib/Objects/Discover/DiscoverTv.cs
index 636913c7..56a794bd 100644
--- a/TMDbLib/Objects/Discover/DiscoverTv.cs
+++ b/TMDbLib/Objects/Discover/DiscoverTv.cs
@@ -189,15 +189,15 @@ public DiscoverTv IncludeNullFirstAirDates(bool include)
}
///
- /// Exclude TV shows with the specified genres. Expected value is a list of Generes.
+ /// Exclude TV shows with the specified genres. Expected value is a list of genres.
///
public DiscoverTv WhereGenresExclude(IEnumerable genres)
{
- return WhereGenresInclude(genres.Select(s => s.Id));
+ return WhereGenresExclude(genres.Select(s => s.Id));
}
///
- /// Exclude TV shows with the specified genres. Expected value is an integer (the id of a genre).
+ /// Exclude TV shows with the specified genres. Expected value is a list of integer (the id of a genre).
///
public DiscoverTv WhereGenresExclude(IEnumerable genreIds)
{