Fix misplaced param documentation comment (#453)

This commit is contained in:
Hank Hester 2020-05-20 09:40:27 -07:00 committed by GitHub
parent e1e63cc465
commit 482562c573
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -813,6 +813,7 @@ namespace SpotifyAPI.Web
/// <summary> /// <summary>
/// Add the current user as a follower of a playlist. /// Add the current user as a follower of a playlist.
/// </summary> /// </summary>
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
/// <param name="playlistId"> /// <param name="playlistId">
/// The Spotify ID of the playlist. Any playlist can be followed, regardless of its public/private /// The Spotify ID of the playlist. Any playlist can be followed, regardless of its public/private
/// status, as long as you know its playlist ID. /// status, as long as you know its playlist ID.
@ -866,7 +867,6 @@ namespace SpotifyAPI.Web
/// <summary> /// <summary>
/// Remove the current user as a follower of a playlist asynchronously. /// Remove the current user as a follower of a playlist asynchronously.
/// </summary> /// </summary>
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
/// <param name="playlistId">The Spotify ID of the playlist that is to be no longer followed.</param> /// <param name="playlistId">The Spotify ID of the playlist that is to be no longer followed.</param>
/// <returns></returns> /// <returns></returns>
/// <remarks>AUTH NEEDED</remarks> /// <remarks>AUTH NEEDED</remarks>