Skip to content

Commit 42a047a

Browse files
authored
Fix typo
1 parent be758ac commit 42a047a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

UnityProject/Assets/Ardity/Scripts/Editor/ApiLevelChecker.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ public static void CheckLevel()
2121
if (currentApi == targetApi) return;
2222

2323
string title = "API Compatibility Level not supported";
24-
string massage = $"Current API Compatibility Level ({currentApi}) is not supported for Ardity.\n" +
24+
string message = $"Current API Compatibility Level ({currentApi}) is not supported for Ardity.\n" +
2525
$"Use .Net 4.x (or .Net 2.0 for Unity 2018 or earlier).\n" +
2626
$"Would you like to change it to {targetApi}?";
2727
string noButton = "I will change it later";
2828

29-
if (EditorUtility.DisplayDialog(title, massage, "Yes", noButton))
29+
if (EditorUtility.DisplayDialog(title, message, "Yes", noButton))
3030
{
3131
PlayerSettings.SetApiCompatibilityLevel(UnityEditor.Build.NamedBuildTarget.Standalone, targetApi);
3232
Debug.Log("API Compatibility Level changed to " + targetApi);
3333
}
3434
}
35-
}
35+
}

0 commit comments

Comments
 (0)