diff --git a/SpotifyAPI/Web/SpotifyWebAPI.cs b/SpotifyAPI/Web/SpotifyWebAPI.cs
index b275bdbb..1d7f1eaa 100644
--- a/SpotifyAPI/Web/SpotifyWebAPI.cs
+++ b/SpotifyAPI/Web/SpotifyWebAPI.cs
@@ -60,6 +60,9 @@ namespace SpotifyAPI.Web
///
public int RetryTimes { get; set; } = 10;
+ ///
+ /// Error codes that will trigger auto-retry if is enabled.
+ ///
public IEnumerable RetryErrorCodes { get; private set; } = new int[] { 500, 502, 503 };
#endregion Configuration