Skip to content

Commit

Permalink
MPFullDescription -> PearlFullDescription.
Browse files Browse the repository at this point in the history
  • Loading branch information
lhunath committed Feb 22, 2014
1 parent 4a3c68d commit 5c12bd2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
Expand Up @@ -6,7 +6,7 @@

#import <Foundation/Foundation.h>

@interface NSError (MPFullDescription)
@interface NSError (PearlFullDescription)

- (NSString *)fullDescription;

Expand Down
Expand Up @@ -4,10 +4,10 @@
//


#import "NSError+MPFullDescription.h"
#import "NSError+PearlFullDescription.h"


@implementation NSError (MPFullDescription)
@implementation NSError (PearlFullDescription)

- (NSString *)fullDescription {

Expand Down
4 changes: 3 additions & 1 deletion Pearl/NSObject+PearlKVO.h
Expand Up @@ -24,7 +24,9 @@
*
* @param observerBlock The block that gets invoked whenever a change to the receiver's value at the keyPath is detected.
* The keyPath passed to the block is the keyPath where the change happened, the object is the receiver,
* change is a dictionary that describes the change and context is the context given to this method.
* change is a dictionary that describes the change and context is the context given to this method.
*
* @return The observer that will delegate notifications to the block. Remove this observer in -dealloc.
*/
- (id)addObserverBlock:(void (^)(NSString *keyPath, id object, NSDictionary *change, void *context))observerBlock
forKeyPath:(NSString *)keyPath options:(NSKeyValueObservingOptions)options context:(void *)context;
Expand Down
2 changes: 1 addition & 1 deletion Pearl/Pearl.h
Expand Up @@ -7,7 +7,7 @@
#import "NSBundle+PearlMutableInfo.h"
#import "NSDateFormatter+RFC3339.h"
#import "NSDictionary+Indexing.h"
#import "NSError+MPFullDescription.h"
#import "NSError+PearlFullDescription.h"
#import "NSObject+PearlExport.h"
#import "NSObject+PearlKVO.h"
#import "NSString+PearlNSArrayFormat.h"
Expand Down

0 comments on commit 5c12bd2

Please sign in to comment.