Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/libraries/System.Private.CoreLib/src/System/Lazy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -525,10 +525,10 @@ public LazyDebugView(Lazy<T> lazy)
/// <summary>Returns the value of the Lazy object.</summary>
public T? Value => _lazy.ValueForDebugDisplay;

/// <summary>Returns the execution mode of the Lazy object</summary>
/// <summary>Returns the execution mode of the Lazy object.</summary>
public LazyThreadSafetyMode? Mode => _lazy.Mode;

/// <summary>Returns the execution mode of the Lazy object</summary>
/// <summary>Returns whether the value creation of the Lazy object is faulted or not.</summary>
public bool IsValueFaulted => _lazy.IsValueFaulted;
}
}