Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
13on4rd committed Dec 18, 2024
1 parent 9060cca commit 568e599
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Scripts/GameManager/GameManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ private async UniTask<bool> SavePlayerStatistic()

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

bool succesful = await RestRequest.PutRequest(path, json);
bool successful = await RestRequest.PutRequest(path, json);

if (succesful)
if (successful)
{
Debug.Log("Updated player statistic successfully");
return true;
Expand Down

0 comments on commit 568e599

Please sign in to comment.