Skip to content

Commit e42c4c8

Browse files
committed
Add System. prefix to exceptions
1 parent d67a324 commit e42c4c8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

xml/System.Collections.Generic/Dictionary`2.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@
334334
<param name="collection">The <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.Dictionary`2" />.</param>
335335
<summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IEnumerable`1" />.</summary>
336336
<remarks>To be added.</remarks>
337-
<exception cref="ArgumentException"><paramref name="collection" /> contains one or more duplicated keys.</exception>
337+
<exception cref="System.ArgumentException"><paramref name="collection" /> contains one or more duplicated keys.</exception>
338338
</Docs>
339339
</Member>
340340
<Member MemberName=".ctor">
@@ -572,7 +572,7 @@
572572
<param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing keys, or <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1" /> for the type of the key.</param>
573573
<summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IEnumerable`1" /> and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.</summary>
574574
<remarks>To be added.</remarks>
575-
<exception cref="ArgumentException"><paramref name="collection" /> contains one or more duplicated keys.</exception>
575+
<exception cref="System.ArgumentException"><paramref name="collection" /> contains one or more duplicated keys.</exception>
576576
</Docs>
577577
</Member>
578578
<Member MemberName=".ctor">
@@ -1514,7 +1514,7 @@
15141514
<returns>
15151515
<see langword="true" /> if the element is successfully found and removed; otherwise, <see langword="false" />.</returns>
15161516
<remarks>To be added.</remarks>
1517-
<exception cref="ArgumentNullException"><paramref name="key" /> is <see langword="null" />.</exception>
1517+
<exception cref="System.ArgumentNullException"><paramref name="key" /> is <see langword="null" />.</exception>
15181518
</Docs>
15191519
</Member>
15201520
<Member MemberName="System.Collections.Generic.ICollection&lt;System.Collections.Generic.KeyValuePair&lt;TKey,TValue&gt;&gt;.Add">

xml/System.Collections.Generic/Queue`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ finally {
13381338
<returns>
13391339
<see langword="true" /> if the object is successfully removed; <see langword="false" /> if the <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</returns>
13401340
<remarks>To be added.</remarks>
1341-
<exception cref="ArgumentNullException"><paramref name="key" /> is <see langword="null" />.</exception>
1341+
<exception cref="System.ArgumentNullException"><paramref name="key" /> is <see langword="null" />.</exception>
13421342
</Docs>
13431343
</Member>
13441344
<Member MemberName="TryPeek">

xml/System.Collections/BitArray.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ The current <xref:System.Collections.BitArray> is updated and returned.
971971
972972
]]></format>
973973
</remarks>
974-
<exception cref="ArgumentOutOfRangeException"><paramref name="count" /> is less than zero.</exception>
974+
<exception cref="System.ArgumentOutOfRangeException"><paramref name="count" /> is less than zero.</exception>
975975
</Docs>
976976
</Member>
977977
<Member MemberName="Length">
@@ -1186,7 +1186,7 @@ The current <xref:System.Collections.BitArray> is updated and returned.
11861186
11871187
]]></format>
11881188
</remarks>
1189-
<exception cref="ArgumentOutOfRangeException"><paramref name="count" /> is less than zero.</exception>
1189+
<exception cref="System.ArgumentOutOfRangeException"><paramref name="count" /> is less than zero.</exception>
11901190
</Docs>
11911191
</Member>
11921192
<Member MemberName="Set">

0 commit comments

Comments
 (0)