Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marek-safar committed Nov 18, 2020
1 parent ce321d2 commit 30d44e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,6 @@ public override string ToString()
/// </summary>
internal int InnerExceptionCount => _innerExceptions.Length;

internal Exception[] IntenalInnerExceptions => _innerExceptions;
internal Exception[] InternalInnerExceptions => _innerExceptions;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ private void FaultWithTask(Task faultedTask)
// Store the faulted task's exceptions
CompletionState cs = EnsureCompletionStateInitialized();
cs.m_exceptions ??= new List<Exception>(faultedException.InnerExceptionCount);
cs.m_exceptions.AddRange(faultedException.IntenalInnerExceptions);
cs.m_exceptions.AddRange(faultedException.InternalInnerExceptions);

// Now that we're doomed, request completion
RequestCompletion();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4817,7 +4817,7 @@ internal static void AddExceptionsForCompletedTask(ref List<Exception>? exceptio
t.UpdateExceptionObservedStatus();

exceptions ??= new List<Exception>(ex.InnerExceptionCount);
exceptions.AddRange(ex.IntenalInnerExceptions);
exceptions.AddRange(ex.InternalInnerExceptions);
}
}

Expand Down

0 comments on commit 30d44e3

Please sign in to comment.