Parcourir la source

2006-04-28 Atsushi Enomoto <[email protected]>

        * XmlSerializationWriter.cs : fix cosmetic typo (bug #78228).


svn path=/trunk/mcs/; revision=60028
Atsushi Eno il y a 19 ans
Parent
commit
5de22fa983

+ 4 - 0
mcs/class/System.XML/System.Xml.Serialization/ChangeLog

@@ -1,3 +1,7 @@
+2006-04-28  Atsushi Enomoto  <[email protected]>
+
+	* XmlSerializationWriter.cs : fix cosmetic typo (bug #78228).
+
 2006-04-26  Gert Driesen  <[email protected]>
 
 	* SerializationCodeGenerator.cs: For flag enums, we should split on all

+ 1 - 1
mcs/class/System.XML/System.Xml.Serialization/XmlSerializationWriter.cs

@@ -792,7 +792,7 @@ namespace System.Xml.Serialization
 			if (o != null)
 			{
 				if (serializedObjects.Contains (o))
-					throw new InvalidOperationException ("A cirtular reference was detected while serializing an object of type " + o.GetType().Name);
+					throw new InvalidOperationException ("A circular reference was detected while serializing an object of type " + o.GetType().Name);
 				else
 					serializedObjects [o] = o;
 			}