Skip to content

Commit 568e599

Browse files
committed
fixed typo
1 parent 9060cca commit 568e599

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/Scripts/GameManager/GameManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ private async UniTask<bool> SavePlayerStatistic()
9292

9393
string json = JsonUtility.ToJson(playerStatisticDTO, true);
9494

95-
bool succesful = await RestRequest.PutRequest(path, json);
95+
bool successful = await RestRequest.PutRequest(path, json);
9696

97-
if (succesful)
97+
if (successful)
9898
{
9999
Debug.Log("Updated player statistic successfully");
100100
return true;

0 commit comments

Comments
 (0)