Skip to content

Commit

Permalink
Fix whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
uasi committed May 16, 2013
1 parent 89978a7 commit dc72057
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CDEvent.m
Expand Up @@ -96,7 +96,7 @@ - (id)copyWithZone:(NSZone *)zone
return self;
}

#pragma mark Specific flag properties
#pragma mark Specific flag properties
- (BOOL)isGenericChange
{
return (kFSEventStreamEventFlagNone == _flags);
Expand Down
10 changes: 5 additions & 5 deletions README.mdown
@@ -1,5 +1,5 @@
# CDEvents
***Note:*** The `develop` branch **requires Mac OS X 10.6 or newer** as the framework relies on [ARC](http://clang.llvm.org/docs/AutomaticReferenceCounting.html "Automatic Reference Counting Technical Specification") and [blocks](http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Blocks/Articles/00_Introduction.html "Blocks Programming Topics").
***Note:*** The `develop` branch **requires Mac OS X 10.6 or newer** as the framework relies on [ARC](http://clang.llvm.org/docs/AutomaticReferenceCounting.html "Automatic Reference Counting Technical Specification") and [blocks](http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Blocks/Articles/00_Introduction.html "Blocks Programming Topics").

Website: http://rastersize.github.com/CDEvents

Expand All @@ -26,9 +26,9 @@ You can use either the block based version (recommended) or the delegate based.
Easy example code:

self.events = [[CDEvents alloc] initWithURLs:<NSArray of URLs to watch>
block:^(CDEvents *watcher, CDEvent *event) {
<Your code here>
}];
block:^(CDEvents *watcher, CDEvent *event) {
<Your code here>
}];

Or use all the all-options initiator:

Expand Down Expand Up @@ -69,7 +69,7 @@ Example code:

See the test app (`TestApp`) for an example on how to use the framework.

**Important:** Since Mac OS X 10.6 is set as the deployment target automatic zeroing of weak references is not available. Thus you must set the `delegate` of `CDEvents` to `nil` when you no longer want to receive events. That is, at least in your `-dealloc` method. This is also required when using 10.7 and up! (`delegate` is an `unsafe_unretained` property.)
**Important:** Since Mac OS X 10.6 is set as the deployment target automatic zeroing of weak references is not available. Thus you must set the `delegate` of `CDEvents` to `nil` when you no longer want to receive events. That is, at least in your `-dealloc` method. This is also required when using 10.7 and up! (`delegate` is an `unsafe_unretained` property.)

For more details please refer to the documentation in the header files and the section "API documentation" below.

Expand Down

0 comments on commit dc72057

Please sign in to comment.