Skip to content

Commit 9c2b418

Browse files
authored
Apply suggestions from code review
1 parent 423de18 commit 9c2b418

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/code-quality/ca2009.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ manager: jillfra
3232
- <xref:System.Collections.Immutable.ImmutableList%601?displayProperty=fullName>
3333
- <xref:System.Collections.Immutable.ImmutableHashSet%601?displayProperty=fullName>
3434
- <xref:System.Collections.Immutable.ImmutableSortedSet%601?displayProperty=fullName>
35-
- <xref:System.Collections.Immutable.ImmutableDictionary%601?displayProperty=fullName>
36-
- <xref:System.Collections.Immutable.ImmutableSortedDictionary%601?displayProperty=fullName>
35+
- <xref:System.Collections.Immutable.ImmutableDictionary%602?displayProperty=fullName>
36+
- <xref:System.Collections.Immutable.ImmutableSortedDictionary%602?displayProperty=fullName>
3737

3838
These types define extension methods that create a new immutable collection from an existing <xref:System.Collections.Generic.IEnumerable%601> collection.
3939

4040
- <xref:System.Collections.Immutable.ImmutableArray%601> defines <xref:System.Collections.Immutable.ImmutableArray.ToImmutableArray%2A>.
4141
- <xref:System.Collections.Immutable.ImmutableList%601> defines <xref:System.Collections.Immutable.ImmutableList.ToImmutableList%2A>.
4242
- <xref:System.Collections.Immutable.ImmutableHashSet%601> defines <xref:System.Collections.Immutable.ImmutableHashSet.ToImmutableHashSet%2A>.
4343
- <xref:System.Collections.Immutable.ImmutableSortedSet%601> defines <xref:System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet%2A>.
44-
- <xref:System.Collections.Immutable.ImmutableDictionary%601> defines <xref:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary%2A>.
45-
- <xref:System.Collections.Immutable.ImmutableSortedDictionary%601> defines <xref:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary%2A>.
44+
- <xref:System.Collections.Immutable.ImmutableDictionary%602> defines <xref:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary%2A>.
45+
- <xref:System.Collections.Immutable.ImmutableSortedDictionary%602> defines <xref:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary%2A>.
4646

4747
These extension methods are designed to convert a mutable collection to an immutable collection. However, the caller might accidentally pass in an immutable collection as input to these methods. This can represent a performance and/or a functional issue.
4848

0 commit comments

Comments
 (0)