diff --git a/streamerbot/3.api/3.csharp/0.guide/1.variables.md b/streamerbot/3.api/3.csharp/0.guide/1.variables.md index 4095d23f..7834a827 100644 --- a/streamerbot/3.api/3.csharp/0.guide/1.variables.md +++ b/streamerbot/3.api/3.csharp/0.guide/1.variables.md @@ -147,7 +147,7 @@ string jsonSaveString = JsonConvert.SerializeObject(testList); CPH.SetGlobalVar("savingClass", jsonSaveString, true); //... Deserializing saved JSON string -string savedString = CPH.GetGlobalVar("savingClass", true); +string savedString = CPH.GetGlobalVar("savingClass", true); List savedList = JsonConvert.DeserializeObject>(savedString); ```