Skip to content

Commit 1231285

Browse files
author
Ron Petrusha
authored
Corrected exception formatting (#2211)
* Corrected exception formatting * fixed paramref tagging
1 parent 3c26dd4 commit 1231285

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

xml/System.IO/Path.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@ For more information on file path formats on Windows, see [File path formats on
11461146
<Parameter Name="basePath" Type="System.String" Index="1" FrameworkAlternate="netcore-2.1;netcore-2.2;netcore-3.0" />
11471147
</Parameters>
11481148
<Docs>
1149-
<param name="path">A relative path to concatenate to <see paramref="basePath" />.</param>
1149+
<param name="path">A relative path to concatenate to <paramref name="basePath" />.</param>
11501150
<param name="basePath">The beginning of a fully qualified path.</param>
11511151
<summary>Returns an absolute path from a fully qualified base path and a relative path.</summary>
11521152
<returns>The absolute path.</returns>
@@ -1172,8 +1172,10 @@ The following example defines a variable, `basePath`, to represent an applicatio
11721172
<paramref name="path" /> or <paramref name="basePath" /> is <see langword="null" />.</exception>
11731173
<exception cref="T:System.ArgumentException">
11741174
<paramref name="basePath" /> is not a fully qualified path.
1175-
-or-
1176-
<paramref name="path" /> or <paramref name="basePath" /> contains invalid path characters, such as U+0000.</exception>
1175+
1176+
-or-
1177+
1178+
<paramref name="path" /> or <paramref name="basePath" /> contains invalid path characters, such as U+0000.</exception>
11771179
</Docs>
11781180
</Member>
11791181
<Member MemberName="GetInvalidFileNameChars">
@@ -2419,4 +2421,4 @@ The destination character span must be large enough to hold the concatenated pat
24192421
</Docs>
24202422
</Member>
24212423
</Members>
2422-
</Type>
2424+
</Type>

0 commit comments

Comments
 (0)