Skip to content
This repository has been archived by the owner on Apr 17, 2019. It is now read-only.

Commit

Permalink
Merge pull request #13 from ccll1/patch-1
Browse files Browse the repository at this point in the history
Typo fix.
  • Loading branch information
brentsimmons committed Aug 27, 2014
2 parents 041b259 + 74514a9 commit a9e26bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Foundation/NSMutableDictionary+QSKit.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ @implementation NSMutableDictionary (QSKit)


- (void)qs_safeSetObject:(id)obj forKey:(id)key {
if (obj != nil & key != nil) {
if (obj != nil && key != nil) {
[self setObject:obj forKey:key];
}
}
Expand Down

0 comments on commit a9e26bc

Please sign in to comment.