summaryrefslogtreecommitdiff
path: root/MLKCons.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-17 18:10:33 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-17 18:10:33 +0200
commit9c474fa5b3c31515b91093a0918b6821fe51d231 (patch)
treec1c4b881ce12a42a7e54b25f4333169ad02e995d /MLKCons.m
parent194b0af8b8945212efe0ea76579e166274184389 (diff)
MLKCons#-descriptionForLisp: Fix a stupid typo.
Diffstat (limited to 'MLKCons.m')
-rw-r--r--MLKCons.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKCons.m b/MLKCons.m
index aee322a..35a6abc 100644
--- a/MLKCons.m
+++ b/MLKCons.m
@@ -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]];