OnDestory -> OnDestroy
This commit is contained in:
くすは
2019-10-29 22:31:25 +09:00
parent 50ba93f951
commit e67562b823
2 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ namespace UniRx.Async
public static void RegisterRaiseCancelOnDestroy(this CancellationTokenSource cts, GameObject gameObject)
{
var trigger = gameObject.GetAsyncDestroyTrigger();
trigger.AddCancellationTriggerOnDestory(cts);
trigger.AddCancellationTriggerOnDestroy(cts);
}
}
}