Skip to content

Commit 823c4f5

Browse files
author
Mark Whitaker
authored
Corrected parameter name in Sleep(TimeSpan) docs (#4433)
1 parent ac12fc2 commit 823c4f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System.Threading/Thread.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3408,7 +3408,7 @@ The value is not guaranteed to be a zero-based processor number.
34083408
<Parameter Name="timeout" Type="System.TimeSpan" />
34093409
</Parameters>
34103410
<Docs>
3411-
<param name="timeout">The amount of time for which the thread is suspended. If the value of the <paramref name="millisecondsTimeout" /> argument is <see cref="F:System.TimeSpan.Zero" />, the thread relinquishes the remainder of its time slice to any thread of equal priority that is ready to run. If there are no other threads of equal priority that are ready to run, execution of the current thread is not suspended.</param>
3411+
<param name="timeout">The amount of time for which the thread is suspended. If the value of the <paramref name="timeout" /> argument is <see cref="F:System.TimeSpan.Zero" />, the thread relinquishes the remainder of its time slice to any thread of equal priority that is ready to run. If there are no other threads of equal priority that are ready to run, execution of the current thread is not suspended.</param>
34123412
<summary>Suspends the current thread for the specified amount of time.</summary>
34133413
<remarks>
34143414
<format type="text/markdown"><![CDATA[

0 commit comments

Comments
 (0)