Skip to content

Commit 8770079

Browse files
committed
Small fix for a loading problem
1 parent ce18207 commit 8770079

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

AWKHelpers.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::Spec.new do |s|
33
s.name = "AWKHelpers"
4-
s.version = "0.3.3"
4+
s.version = "0.4.0"
55
s.summary = "A growing collection of UIKit and Foundation categories (helpers)"
66
s.description = <<-DESC
77
A growing collection of UIKit and Foundation categories (helpers) we use at Awkward

Classes/AWKDictionaryHelper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ typedef enum {
1616
AWKDictionaryValueTypeDictionary
1717
} AWKDictionaryValueType;
1818

19-
@interface NSMutableDictionary (AWKDictionaryHelper)
19+
@interface NSMutableDictionary (AWKMutableDictionaryHelper)
2020

2121
/**
2222
Tests to see if the object is a non nil object and puts it in the dictionary.

Classes/AWKDictionaryHelper.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#import "AWKDictionaryHelper.h"
1010

11-
@implementation NSMutableDictionary (AWKDictionaryHelper)
11+
@implementation NSMutableDictionary (AWKMutableDictionaryHelper)
1212

1313
- (void)setObjectIfNonNil:(id)anObject forKey:(id <NSCopying>)aKey {
1414
if (anObject) {

0 commit comments

Comments
 (0)