From cc46f801d37875510f59e19620e3542c698dbb09 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 30 Jan 2020 16:26:53 +1100 Subject: [PATCH] Add comment for default value. --- src/ImageSharp/Formats/Gif/GifMetadata.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Formats/Gif/GifMetadata.cs b/src/ImageSharp/Formats/Gif/GifMetadata.cs index 1914875d9..5fe86c4dd 100644 --- a/src/ImageSharp/Formats/Gif/GifMetadata.cs +++ b/src/ImageSharp/Formats/Gif/GifMetadata.cs @@ -36,7 +36,7 @@ namespace SixLabors.ImageSharp.Formats.Gif /// /// Gets or sets the number of times any animation is repeated. /// - /// 0 means to repeat indefinitely, count is set as repeat n-1 times + /// 0 means to repeat indefinitely, count is set as repeat n-1 times. Defaults to 1. /// /// public ushort RepeatCount { get; set; } = 1;