Skip to content

Commit

Permalink
Align method declarations over multiple lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanworl committed May 26, 2014
1 parent a711220 commit 0d66bf6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Aspects.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ typedef NS_OPTIONS(NSUInteger, AspectOptions) {
/// @note Hooking static methods is not supported.
/// @return A token which allows to later deregister the aspect.
+ (id<AspectToken>)aspect_hookSelector:(SEL)selector
withOptions:(AspectOptions)options
usingBlock:(id)block
error:(NSError **)error;
withOptions:(AspectOptions)options
usingBlock:(id)block
error:(NSError **)error;

/// Adds a block of code before/instead/after the current `selector` for a specific instance.
- (id<AspectToken>)aspect_hookSelector:(SEL)selector
withOptions:(AspectOptions)options
usingBlock:(id)block
error:(NSError **)error;
withOptions:(AspectOptions)options
usingBlock:(id)block
error:(NSError **)error;

@end

Expand Down

0 comments on commit 0d66bf6

Please sign in to comment.