Skip to content

Commit

Permalink
GH-346: Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikfroehling committed Oct 17, 2022
1 parent da24fa9 commit 6545168
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;

/// <summary>
/// A Trakt collection post, containing all movies, shows and / or episodes,
/// A Trakt collection post, containing all movies, shows, seasons and / or episodes,
/// which should be added to the user's collection.
/// </summary>
public interface ITraktSyncCollectionPost : IRequestBody
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace TraktNet.Objects.Post.Syncs.Collection
{
/// <summary>
/// A Trakt collection remove post, containing all movies, shows and / or episodes,
/// A Trakt collection remove post, containing all movies, shows, seasons and / or episodes,
/// which should be removed from the user's collection.
/// </summary>
public interface ITraktSyncCollectionRemovePost : ITraktSyncCollectionPost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;

/// <summary>
/// A Trakt collection post, containing all movies, shows and / or episodes,
/// A Trakt collection post, containing all movies, shows, seasons and / or episodes,
/// which should be added to the user's collection.
/// </summary>
public class TraktSyncCollectionPost : ITraktSyncCollectionPost
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace TraktNet.Objects.Post.Syncs.Collection
{
/// <summary>
/// A Trakt collection remove post, containing all movies, shows and / or episodes,
/// A Trakt collection remove post, containing all movies, shows, seasons and / or episodes,
/// which should be removed from the user's collection.
/// </summary>
public class TraktSyncCollectionRemovePost : TraktSyncCollectionPost, ITraktSyncCollectionRemovePost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;

/// <summary>
/// A Trakt history post, containing all movies, shows and / or episodes,
/// A Trakt history post, containing all movies, shows, seasons and / or episodes,
/// which should be added to the user's history.
/// </summary>
public interface ITraktSyncHistoryPost : IRequestBody
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;

/// <summary>
/// A Trakt history remove post, containing all movies, shows, episodes and / or history ids,
/// A Trakt history remove post, containing all movies, shows, seasons, episodes and / or history ids,
/// which should be removed from the user's history.
/// </summary>
public interface ITraktSyncHistoryRemovePost : IRequestBody
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;

/// <summary>
/// A Trakt history post, containing all movies, shows and / or episodes,
/// A Trakt history post, containing all movies, shows, seasons and / or episodes,
/// which should be added to the user's history.
/// </summary>
public class TraktSyncHistoryPost : ITraktSyncHistoryPost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;

/// <summary>
/// A Trakt history remove post, containing all movies, shows, episodes and / or history ids,
/// A Trakt history remove post, containing all movies, shows, seasons, episodes and / or history ids,
/// which should be removed from the user's history.
/// </summary>
public class TraktSyncHistoryRemovePost : ITraktSyncHistoryRemovePost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;

/// <summary>
/// A Trakt ratings post, containing all movies, shows and / or episodes,
/// A Trakt ratings post, containing all movies, shows, seasons and / or episodes,
/// which should be added to the user's ratings.
/// </summary>
public interface ITraktSyncRatingsPost : IRequestBody
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace TraktNet.Objects.Post.Syncs.Ratings
{
/// <summary>
/// A Trakt ratings remove post, containing all movies, shows and / or episodes,
/// A Trakt ratings remove post, containing all movies, shows, seasons and / or episodes,
/// which should be removed from the user's ratings.
/// </summary>
public interface ITraktSyncRatingsRemovePost : ITraktSyncRatingsPost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;

/// <summary>
/// A Trakt ratings post, containing all movies, shows and / or episodes,
/// A Trakt ratings post, containing all movies, shows, seasons and / or episodes,
/// which should be added to the user's ratings.
/// </summary>
public class TraktSyncRatingsPost : ITraktSyncRatingsPost
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace TraktNet.Objects.Post.Syncs.Ratings
{
/// <summary>
/// A Trakt ratings remove post, containing all movies, shows and / or episodes,
/// A Trakt ratings remove post, containing all movies, shows, seasons and / or episodes,
/// which should be removed from the user's ratings.
/// </summary>
public class TraktSyncRatingsRemovePost : TraktSyncRatingsPost, ITraktSyncRatingsRemovePost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;

/// <summary>
/// A Trakt watchlist post, containing all movies, shows and / or episodes,
/// A Trakt watchlist post, containing all movies, shows, seasons and / or episodes,
/// which should be added to the user's watchlist.
/// </summary>
public interface ITraktSyncWatchlistPost : IRequestBody
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;

/// <summary>
/// A Trakt watchlist post, containing all movies, shows and / or episodes,
/// A Trakt watchlist post, containing all movies, shows, seasons and / or episodes,
/// which should be added to the user's watchlist.
/// </summary>
public class TraktSyncWatchlistPost : ITraktSyncWatchlistPost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;

/// <summary>
/// An user hidden items post, containing all movies, shows, and / or episodes,
/// An user hidden items post, containing all movies, shows, seasons and / or episodes,
/// which should be added to an user's hidden items list.
/// </summary>
public interface ITraktUserHiddenItemsPost : IRequestBody
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Threading.Tasks;

/// <summary>
/// An user hidden items post, containing all movies, shows, and / or episodes,
/// An user hidden items post, containing all movies, shows, seasons and / or episodes,
/// which should be added to an user's hidden items list.
/// </summary>
public class TraktUserHiddenItemsPost : ITraktUserHiddenItemsPost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;

/// <summary>
/// An user personal list items post, containing all movies, shows, episodes and / or people,
/// An user personal list items post, containing all movies, shows, seasons, episodes and / or people,
/// which should be added to an user's personal list.
/// </summary>
public interface ITraktUserPersonalListItemsPost : IRequestBody
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;

/// <summary>
/// An user personal list items post, containing all movies, shows, episodes and / or people,
/// An user personal list items post, containing all movies, shows, seasons, episodes and / or people,
/// which should be added to an user's personal list.
/// </summary>
public class TraktUserPersonalListItemsPost : ITraktUserPersonalListItemsPost
Expand Down

0 comments on commit 6545168

Please sign in to comment.