summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/Lazy.cs
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2018-12-04 10:47:21 -0500
committerStephen Toub <stoub@microsoft.com>2018-12-04 10:47:21 -0500
commit1b3dc3356cb6acd7025d50202b7003f0244fb7ed (patch)
treeff3f6c4d0abd11fcb8ca9ca35355eca2cfc43b0b /src/System.Private.CoreLib/shared/System/Lazy.cs
parent08d9c11bdf09837ee39aad4766091ce44e6ee837 (diff)
downloadcoreclr-1b3dc3356cb6acd7025d50202b7003f0244fb7ed.tar.gz
coreclr-1b3dc3356cb6acd7025d50202b7003f0244fb7ed.tar.bz2
coreclr-1b3dc3356cb6acd7025d50202b7003f0244fb7ed.zip
Fix lots of malformed XML comments
These are causing errors in the source.dot.net build. Turning on DocumentationFile and suppressing 1591, 1573, and 0419, Corelib builds clean after these changes.
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Lazy.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Lazy.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Lazy.cs b/src/System.Private.CoreLib/shared/System/Lazy.cs
index 02122ca05e..78d5c40e54 100644
--- a/src/System.Private.CoreLib/shared/System/Lazy.cs
+++ b/src/System.Private.CoreLib/shared/System/Lazy.cs
@@ -218,7 +218,7 @@ namespace System
/// </summary>
/// <remarks>
/// An instance created with this constructor should be usable by multiple threads
- // concurrently.
+ /// concurrently.
/// </remarks>
public Lazy(T value)
{
@@ -499,7 +499,7 @@ namespace System
/// </exception>
/// <remarks>
/// If <see cref="IsValueCreated"/> is false, accessing <see cref="Value"/> will force initialization.
- /// Please <see cref="System.Threading.LazyThreadSafetyMode"> for more information on how <see cref="T:System.Threading.Lazy{T}"/> will behave if an exception is thrown
+ /// Please <see cref="System.Threading.LazyThreadSafetyMode"/> for more information on how <see cref="T:System.Threading.Lazy{T}"/> will behave if an exception is thrown
/// from initialization delegate.
/// </remarks>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]