diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-06-17 18:10:33 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-06-17 18:10:33 +0200 |
commit | 9c474fa5b3c31515b91093a0918b6821fe51d231 (patch) | |
tree | c1c4b881ce12a42a7e54b25f4333169ad02e995d | |
parent | 194b0af8b8945212efe0ea76579e166274184389 (diff) |
MLKCons#-descriptionForLisp: Fix a stupid typo.
-rw-r--r-- | MLKCons.m | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ { if (!_cdr) return [NSString stringWithFormat:@"%@", [_car descriptionForLisp]]; - else if (![_cdr isKindOfClass:[MLKCons class]]) + else if ([_cdr isKindOfClass:[MLKCons class]]) return [NSString stringWithFormat:@"%@ %@", [_car descriptionForLisp], [_cdr bareDescriptionForLisp]]; |