Skip to content

Fixed paramref to reference correct param name #3581

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
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 xml/System.IO/Directory.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3900,7 +3900,7 @@ Directory::CreateDirectory("Public\\Html");
</Parameters>
<Docs>
<param name="path">The file or directory for which to set the creation date and time information.</param>
<param name="creationTime">The date and time the file or directory was last written to. This value is expressed in local time.</param>
<param f>The date and time the file or directory was last written to. This value is expressed in local time.</param>
<summary>Sets the creation date and time for the specified file or directory.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
Expand Down Expand Up @@ -4001,7 +4001,7 @@ Directory::CreateDirectory("Public\\Html");
<exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
<exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="creationTime" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
<paramref name="creationTimeUtc" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
<exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
<permission cref="T:System.Security.Permissions.FileIOPermission">for writing to the specified file or directory. Associated enumeration: <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" /></permission>
<altmember cref="T:System.IO.FileSystemWatcher" />
Expand Down