Skip to content

Commit cf19f18

Browse files
committed
fix: typo
1 parent fdb9d1c commit cf19f18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/UniTask/Assets/Tests/AsyncTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class MyMyClass
145145
public int MyProperty { get; set; }
146146
}
147147

148-
class MyBoolenClass
148+
class MyBooleanClass
149149
{
150150
public bool MyProperty { get; set; }
151151
}
@@ -167,7 +167,7 @@ public IEnumerator WaitUntil() => UniTask.ToCoroutine(async () =>
167167
[UnityTest]
168168
public IEnumerator WaitUntilWithState() => UniTask.ToCoroutine(async () =>
169169
{
170-
var v = new MyBoolenClass { MyProperty = false };
170+
var v = new MyBooleanClass { MyProperty = false };
171171

172172
UniTask.DelayFrame(10, PlayerLoopTiming.PostLateUpdate).ContinueWith(() => v.MyProperty = true).Forget();
173173

@@ -195,7 +195,7 @@ public IEnumerator WaitWhile() => UniTask.ToCoroutine(async () =>
195195
[UnityTest]
196196
public IEnumerator WaitWhileWithState() => UniTask.ToCoroutine(async () =>
197197
{
198-
var v = new MyBoolenClass { MyProperty = true };
198+
var v = new MyBooleanClass { MyProperty = true };
199199

200200
UniTask.DelayFrame(10, PlayerLoopTiming.PostLateUpdate).ContinueWith(() => v.MyProperty = false).Forget();
201201

0 commit comments

Comments
 (0)