Skip to content

Commit

Permalink
add missing spaces - trivial style fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
rfm committed Oct 30, 2024
1 parent 2604992 commit 2c55f76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Headers/Foundation/NSThread.h
Original file line number Diff line number Diff line change
Expand Up @@ -416,13 +416,13 @@ GS_EXPORT void GSUnregisterCurrentThread (void);
/**
* Detaches a new thread with block as its entry point.
*/
+ (void)detachNewThreadWithBlock: (GSThreadBlock)block;
+ (void) detachNewThreadWithBlock: (GSThreadBlock)block;

/**
* Initialises a NSThread object with block as the
* entry point.
*/
- (instancetype)initWithBlock: (GSThreadBlock)block;
- (instancetype) initWithBlock: (GSThreadBlock)block;
#endif // OS_API_VERSION

@end
Expand Down
4 changes: 2 additions & 2 deletions Source/NSThread.m
Original file line number Diff line number Diff line change
Expand Up @@ -2424,7 +2424,7 @@ - (void) performSelectorInBackground: (SEL)aSelector

@implementation NSThread (BlockAdditions)

+ (void)detachNewThreadWithBlock: (GSThreadBlock)block
+ (void) detachNewThreadWithBlock: (GSThreadBlock)block
{
NSThread *thread;

Expand All @@ -2434,7 +2434,7 @@ + (void)detachNewThreadWithBlock: (GSThreadBlock)block
RELEASE(thread);
}

- (instancetype)initWithBlock: (GSThreadBlock)block
- (instancetype) initWithBlock: (GSThreadBlock)block
{
if (nil != (self = [self init]))
{
Expand Down

0 comments on commit 2c55f76

Please sign in to comment.