Skip to content

Commit

Permalink
minor tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
RexJaeschke authored Feb 6, 2025
1 parent 4bbd499 commit afca4f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions standard/standard-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ namespace System
public ArrayTypeMismatchException();
public ArrayTypeMismatchException(string? message);
public ArrayTypeMismatchException(string? message,
Exception innerException);
Exception? innerException);
}

[AttributeUsageAttribute(AttributeTargets.All, Inherited = true,
Expand Down Expand Up @@ -119,7 +119,7 @@ namespace System
public Exception();
public Exception(string? message);
public Exception(string? message, Exception? innerException);
public sealed Exception InnerException { get; }
public sealed Exception? InnerException { get; }
public virtual string Message { get; }
}

Expand All @@ -137,7 +137,7 @@ namespace System
public IndexOutOfRangeException();
public IndexOutOfRangeException(string? message);
public IndexOutOfRangeException(string? message,
Exception innerException);
Exception? innerException);
}

public readonly struct Int16 { }
Expand All @@ -157,15 +157,15 @@ namespace System
public InvalidOperationException();
public InvalidOperationException(string? message);
public InvalidOperationException(string? message,
Exception innerException);
Exception? innerException);
}

public class NotSupportedException : Exception
{
public NotSupportedException();
public NotSupportedException(string? message);
public NotSupportedException(string? message,
Exception innerException);
Exception? innerException);
}

public struct Nullable<T>
Expand Down Expand Up @@ -248,7 +248,7 @@ namespace System
public sealed class TypeInitializationException : Exception
{
public TypeInitializationException(string fullTypeName,
Exception innerException);
Exception? innerException);
}

public readonly struct UInt16 { }
Expand Down

0 comments on commit afca4f1

Please sign in to comment.