We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9060cca commit 568e599Copy full SHA for 568e599
Assets/Scripts/GameManager/GameManager.cs
@@ -92,9 +92,9 @@ private async UniTask<bool> SavePlayerStatistic()
92
93
string json = JsonUtility.ToJson(playerStatisticDTO, true);
94
95
- bool succesful = await RestRequest.PutRequest(path, json);
+ bool successful = await RestRequest.PutRequest(path, json);
96
97
- if (succesful)
+ if (successful)
98
{
99
Debug.Log("Updated player statistic successfully");
100
return true;
0 commit comments