diff --git a/src/Workspaces/Core/Portable/NamingStyles/Serialization/NamingStylePreferences.cs b/src/Workspaces/Core/Portable/NamingStyles/Serialization/NamingStylePreferences.cs index 9837435e012b819637bfbfba48c914a4defe474e..a03588ecda1af1a617dbc4799636e1f48001e321 100644 --- a/src/Workspaces/Core/Portable/NamingStyles/Serialization/NamingStylePreferences.cs +++ b/src/Workspaces/Core/Portable/NamingStyles/Serialization/NamingStylePreferences.cs @@ -55,8 +55,8 @@ internal XElement CreateXElement() { return new XElement("NamingPreferencesInfo", new XAttribute("SerializationVersion", s_serializationVersion), - new XElement(nameof(SymbolSpecification), SymbolSpecifications.Select(s => s.CreateXElement())), - new XElement(nameof(NamingStyle), NamingStyles.Select(n => n.CreateXElement())), + new XElement(nameof(SymbolSpecifications), SymbolSpecifications.Select(s => s.CreateXElement())), + new XElement(nameof(NamingStyles), NamingStyles.Select(n => n.CreateXElement())), new XElement(nameof(NamingRules), NamingRules.Select(n => n.CreateXElement()))); }