File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ class MyMyClass
145
145
public int MyProperty { get ; set ; }
146
146
}
147
147
148
- class MyBoolenClass
148
+ class MyBooleanClass
149
149
{
150
150
public bool MyProperty { get ; set ; }
151
151
}
@@ -167,7 +167,7 @@ public IEnumerator WaitUntil() => UniTask.ToCoroutine(async () =>
167
167
[ UnityTest ]
168
168
public IEnumerator WaitUntilWithState ( ) => UniTask . ToCoroutine ( async ( ) =>
169
169
{
170
- var v = new MyBoolenClass { MyProperty = false } ;
170
+ var v = new MyBooleanClass { MyProperty = false } ;
171
171
172
172
UniTask . DelayFrame ( 10 , PlayerLoopTiming . PostLateUpdate ) . ContinueWith ( ( ) => v . MyProperty = true ) . Forget ( ) ;
173
173
@@ -195,7 +195,7 @@ public IEnumerator WaitWhile() => UniTask.ToCoroutine(async () =>
195
195
[ UnityTest ]
196
196
public IEnumerator WaitWhileWithState ( ) => UniTask . ToCoroutine ( async ( ) =>
197
197
{
198
- var v = new MyBoolenClass { MyProperty = true } ;
198
+ var v = new MyBooleanClass { MyProperty = true } ;
199
199
200
200
UniTask . DelayFrame ( 10 , PlayerLoopTiming . PostLateUpdate ) . ContinueWith ( ( ) => v . MyProperty = false ) . Forget ( ) ;
201
201
You can’t perform that action at this time.
0 commit comments