aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Json/Converters/JsonNullableInt32Converter.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-08-21 14:37:51 -0600
committercrobibero <cody@robibe.ro>2020-08-21 14:37:51 -0600
commitd9515547799d3832dff2d38d12bd4dda539a4e23 (patch)
tree40b17d7c0ed8334cc09fea28e715841cb5adddf0 /MediaBrowser.Common/Json/Converters/JsonNullableInt32Converter.cs
parent384a62dc0883549b328dc1f70d19358ae0aa593e (diff)
fix copy-pasta
Diffstat (limited to 'MediaBrowser.Common/Json/Converters/JsonNullableInt32Converter.cs')
-rw-r--r--MediaBrowser.Common/Json/Converters/JsonNullableInt32Converter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Json/Converters/JsonNullableInt32Converter.cs b/MediaBrowser.Common/Json/Converters/JsonNullableInt32Converter.cs
index c4579d989..c1660fe76 100644
--- a/MediaBrowser.Common/Json/Converters/JsonNullableInt32Converter.cs
+++ b/MediaBrowser.Common/Json/Converters/JsonNullableInt32Converter.cs
@@ -7,7 +7,7 @@ using System.Text.Json.Serialization;
namespace MediaBrowser.Common.Json.Converters
{
/// <summary>
- /// Converts a GUID object or value to/from JSON.
+ /// Converts a nullable int32 object or value to/from JSON.
/// </summary>
public class JsonNullableInt32Converter : JsonConverter<int?>
{