summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Text/Normalization.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Text/Normalization.cs')
-rw-r--r--src/mscorlib/src/System/Text/Normalization.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mscorlib/src/System/Text/Normalization.cs b/src/mscorlib/src/System/Text/Normalization.cs
index c81149d59a..dc8bc2af71 100644
--- a/src/mscorlib/src/System/Text/Normalization.cs
+++ b/src/mscorlib/src/System/Text/Normalization.cs
@@ -7,23 +7,23 @@ namespace System.Text
// This is the enumeration for Normalization Forms
public enum NormalizationForm
{
- FormC = 1,
- FormD = 2,
- FormKC = 5,
- FormKD = 6
+ FormC = 1,
+ FormD = 2,
+ FormKC = 5,
+ FormKD = 6
}
internal enum ExtendedNormalizationForms
{
- FormC = 1,
- FormD = 2,
- FormKC = 5,
- FormKD = 6,
+ FormC = 1,
+ FormD = 2,
+ FormKC = 5,
+ FormKD = 6,
FormIdna = 0xd,
- FormCDisallowUnassigned = 0x101,
- FormDDisallowUnassigned = 0x102,
- FormKCDisallowUnassigned = 0x105,
- FormKDDisallowUnassigned = 0x106,
- FormIdnaDisallowUnassigned = 0x10d
+ FormCDisallowUnassigned = 0x101,
+ FormDDisallowUnassigned = 0x102,
+ FormKCDisallowUnassigned = 0x105,
+ FormKDDisallowUnassigned = 0x106,
+ FormIdnaDisallowUnassigned = 0x10d
}
}