Skip to content

Commit 8216bbb

Browse files
committed
Fix spacing typo in IEnumerable<T> remarks ("property .You" -> "property. You")
Fixes #12726.
1 parent 62dd08e commit 8216bbb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
<format type="text/markdown"><![CDATA[
141141
142142
## Remarks
143-
The returned <xref:System.Collections.Generic.IEnumerator`1> provides the ability to iterate through the collection by exposing a <xref:System.Collections.Generic.IEnumerator`1.Current> property .You can use enumerators to read the data in a collection, but not to modify the collection.
143+
The returned <xref:System.Collections.Generic.IEnumerator`1> provides the ability to iterate through the collection by exposing a <xref:System.Collections.Generic.IEnumerator`1.Current> property. You can use enumerators to read the data in a collection, but not to modify the collection.
144144
145145
Initially, the enumerator is positioned before the first element in the collection. At this position, <xref:System.Collections.Generic.IEnumerator`1.Current*> is undefined. Therefore, you must call the <xref:System.Collections.IEnumerator.MoveNext*> method to advance the enumerator to the first element of the collection before reading the value of <xref:System.Collections.Generic.IEnumerator`1.Current*>.
146146

0 commit comments

Comments
 (0)