Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void OnGUI()
// Splittable
SplitterGUILayout.BeginVerticalSplit(this.splitterState, EmptyLayoutOption);
{
// Column Tabble
// Column Table
RenderTable();

// StackTrace details
Expand Down
2 changes: 1 addition & 1 deletion src/UniTask/Assets/Plugins/UniTask/Runtime/TaskPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace Cysharp.Threading.Tasks
{
// internally used but public, allow to user create custom operator with pooling.
// internally used but public, allow user to create custom operator with pooling.

public static class TaskPool
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public static UnityEngine.Events.UnityAction<T0, T1, T2, T3> UnityAction<T0, T1,
return (arg0, arg1, arg2, arg3) => asyncAction(arg0, arg1, arg2, arg3).Forget();
}

// <summary>
/// <summary>
/// Create async void(UniTaskVoid) UnityAction.
/// For example: onClick.AddListener(UniTask.UnityAction(async (T arg, CancellationToken cancellationToken) => { /* */ } ))
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static IObservable<T> ToObservable<T>(this UniTask<T> task)
}

/// <summary>
/// Ideally returns IObservabl[Unit] is best but Cysharp.Threading.Tasks does not have Unit so return AsyncUnit instead.
/// Ideally returns IObservable[Unit] is best but Cysharp.Threading.Tasks does not have Unit so return AsyncUnit instead.
/// </summary>
public static IObservable<AsyncUnit> ToObservable(this UniTask task)
{
Expand Down