Jelajahi Sumber

* DateTimeConverter.cs: Fixed typo in exception message.

svn path=/trunk/mcs/; revision=73052
Gert Driesen 19 tahun lalu
induk
melakukan
8cf28ceccf

+ 4 - 0
mcs/class/System/System.ComponentModel/ChangeLog

@@ -1,3 +1,7 @@
+2007-02-17  Gert Driesen  <[email protected]>
+
+	* DateTimeConverter.cs: Fixed typo in exception message.
+
 2007-02-13  Gert Driesen  <[email protected]>
 
 	* TypeDescriptor.cs: Do not assume that an ISite always has an

+ 1 - 1
mcs/class/System/System.ComponentModel/DateTimeConverter.cs

@@ -68,7 +68,7 @@ namespace System.ComponentModel
 						return DateTime.Parse (DateString, info);
 					}
 				} catch {
-					throw new FormatException (DateString + "is not a valid DateTime value.");
+					throw new FormatException (DateString + " is not a valid DateTime value.");
 				}
 			}
 			return base.ConvertFrom (context, culture, value);