From 2cad1c16bed3dbf99c7ae1654aee554b58dbab80 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Wed, 18 Aug 2021 19:30:02 +0200 Subject: [PATCH] Updated Guide (markdown) --- Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guide.md b/Guide.md index b7a67bb..29cdec9 100644 --- a/Guide.md +++ b/Guide.md @@ -59,7 +59,7 @@ namespace DesktopMagicPlugin { public class InputExamplePlugin : Plugin { - public override int UpdateInterval { get; set; } = 0; + public override int UpdateInterval { get; set; } = 0; //Set the update interval to 0 so that the window is not updated automatically. [Element("Text:")] //Mark the property as element with the specified description private TextBox textBox = new TextBox("abc"); //Create a text box with the specified default value.