From e9b32c0f0e29522d2ab6d5ac088ac0fa56200895 Mon Sep 17 00:00:00 2001 From: BenjaminS <97973081+benjisho@users.noreply.github.com> Date: Wed, 31 May 2023 03:09:52 +0300 Subject: [PATCH] Updated documentation style in Win10Configuration.cs This commit updates the comment style in the Win10Configuration.cs file to use XML comments, enhancing readability and providing better IntelliSense support in IDEs. The changes include: Class and property comments have been updated to use XML documentation syntax, providing a more detailed and consistent documentation style. Here's an example of the changes: ``` /// /// Gets or sets a value indicating whether OCR should be run automatically on every capture. /// ``` This change is purely cosmetic and does not affect the functionality of the code. --- src/Greenshot.Plugin.Win10/Win10Configuration.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Greenshot.Plugin.Win10/Win10Configuration.cs b/src/Greenshot.Plugin.Win10/Win10Configuration.cs index 841232bf2..44624932f 100644 --- a/src/Greenshot.Plugin.Win10/Win10Configuration.cs +++ b/src/Greenshot.Plugin.Win10/Win10Configuration.cs @@ -29,7 +29,10 @@ namespace Greenshot.Plugin.Win10 [IniSection("Win10", Description = "Greenshot Win10 Plugin configuration")] public class Win10Configuration : IniSection { + /// + /// Gets or sets a value indicating whether OCR should be run automatically on every capture. + /// [IniProperty("AlwaysRunOCROnCapture", Description = "Determines if OCR is run automatically on every capture", DefaultValue = "False")] public bool AlwaysRunOCROnCapture { get; set; } } -} \ No newline at end of file +}