Add a decent description method to the object request operations

This commit is contained in:
Blake Watters
2012-10-22 19:29:58 -04:00
parent ae52a10955
commit f96fee87b6
2 changed files with 33 additions and 1 deletions

View File

@@ -46,7 +46,7 @@
- (NSString *)description
{
return [NSString stringWithFormat:@"<%@:%p %@ => %@>", self.class, self, self.sourceKeyPath, self.destinationKeyPath];
return [NSString stringWithFormat:@"<%@: %p %@ => %@>", self.class, self, self.sourceKeyPath, self.destinationKeyPath];
}
@end