summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib
diff options
context:
space:
mode:
authorVance Morrison <vancemorrison@comcast.net>2018-05-22 11:16:05 -0700
committerVance Morrison <vancemorrison@comcast.net>2018-05-22 11:16:05 -0700
commit57055f17d50e275e9c904b3f8975065e3d7af526 (patch)
tree8ff4120139e9cae999fd345267b703208dfb14b9 /src/System.Private.CoreLib
parent1028e3801f8eb72680d4d35b68dc734be5f84785 (diff)
downloadcoreclr-57055f17d50e275e9c904b3f8975065e3d7af526.tar.gz
coreclr-57055f17d50e275e9c904b3f8975065e3d7af526.tar.bz2
coreclr-57055f17d50e275e9c904b3f8975065e3d7af526.zip
Fix attribute placement
Diffstat (limited to 'src/System.Private.CoreLib')
-rw-r--r--src/System.Private.CoreLib/shared/System/Text/StringBuilder.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Text/StringBuilder.cs b/src/System.Private.CoreLib/shared/System/Text/StringBuilder.cs
index d554957507..68cd380c9a 100644
--- a/src/System.Private.CoreLib/shared/System/Text/StringBuilder.cs
+++ b/src/System.Private.CoreLib/shared/System/Text/StringBuilder.cs
@@ -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>