@@ -765,20 +765,20 @@ id key, object; size_t i; if (count == 0) { if ([self isKindOfClass: [OFMutableDictionary class]]) - return @"{}"; + return @"(mutable,0){}"; else - return @"<0>{}"; + return @"(0){}"; } if ([self isKindOfClass: [OFMutableDictionary class]]) - ret = [OFMutableString stringWithFormat: @"{\n", + ret = [OFMutableString stringWithFormat: @"(mutable,%zd){\n", count]; else - ret = [OFMutableString stringWithFormat: @"<%zd>{\n", count]; + ret = [OFMutableString stringWithFormat: @"(%zd){\n", count]; pool = [[OFAutoreleasePool alloc] init]; keyEnumerator = [self keyEnumerator]; objectEnumerator = [self objectEnumerator]; i = 0; @@ -789,17 +789,17 @@ [ret appendString: [key stringBySerializing]]; [ret appendString: @" = "]; [ret appendString: [object stringBySerializing]]; if (++i < count) - [ret appendString: @";\n"]; + [ret appendString: @",\n"]; [pool2 releaseObjects]; } [ret replaceOccurrencesOfString: @"\n" withString: @"\n\t"]; - [ret appendString: @";\n}"]; + [ret appendString: @"\n}"]; [pool release]; /* * Class swizzle the string to be immutable. We declared the return type