Fix typo in TypeTable.cs (#16220)

occured -> occurred
This commit is contained in:
Ikko Ashimine 2021-10-12 02:15:16 +09:00 committed by GitHub
parent 41093f6d7a
commit ce951602a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1747,7 +1747,7 @@ namespace System.Management.Automation.Runspaces
/// <summary>
/// This exception is used by TypeTable constructor to indicate errors
/// occured during construction time.
/// occurred during construction time.
/// </summary>
[Serializable]
public class TypeTableLoadException : RuntimeException
@ -1796,7 +1796,7 @@ namespace System.Management.Automation.Runspaces
/// time.
/// </summary>
/// <param name="loadErrors">
/// The errors that occured
/// The errors that occurred
/// </param>
internal TypeTableLoadException(ConcurrentBag<string> loadErrors)
: base(TypesXmlStrings.TypeTableLoadErrors)