Fix attribute placement
authorVance Morrison <vancemorrison@comcast.net>
Tue, 22 May 2018 18:16:05 +0000 (11:16 -0700)
committerVance Morrison <vancemorrison@comcast.net>
Tue, 22 May 2018 18:16:05 +0000 (11:16 -0700)
src/System.Private.CoreLib/shared/System/Text/StringBuilder.cs

index d554957..68cd380 100644 (file)
@@ -588,11 +588,10 @@ namespace System.Text
         /// </summary>
         public struct ChunkEnumerator
         {
-            [ComponentModel.EditorBrowsable(ComponentModel.EditorBrowsableState.Never)] // Only here to make foreach work
-
             /// <summary>
             /// Implement IEnumerable.GetEnumerator() to return  'this' as the IEnumerator  
             /// </summary>
+            [ComponentModel.EditorBrowsable(ComponentModel.EditorBrowsableState.Never)] // Only here to make foreach work
             public ChunkEnumerator GetEnumerator() { return this;  }
 
             /// <summary>