mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 12:28:52 +00:00
docs: fix various typos and misspellings (#2955)
This commit is contained in:
@@ -182,9 +182,9 @@ static void removeKeRangerRansomware()
|
||||
lsofTask.standardInput = [NSPipe pipe];
|
||||
lsofTask.standardError = lsofTask.standardOutput;
|
||||
[lsofTask launch];
|
||||
NSData* lsofOuputData = [[lsofTask.standardOutput fileHandleForReading] readDataToEndOfFile];
|
||||
NSData* lsofOutputData = [[lsofTask.standardOutput fileHandleForReading] readDataToEndOfFile];
|
||||
[lsofTask waitUntilExit];
|
||||
NSString* lsofOutput = [[NSString alloc] initWithData:lsofOuputData encoding:NSUTF8StringEncoding];
|
||||
NSString* lsofOutput = [[NSString alloc] initWithData:lsofOutputData encoding:NSUTF8StringEncoding];
|
||||
for (NSString* line in [lsofOutput componentsSeparatedByString:@"\n"])
|
||||
{
|
||||
if (![line hasPrefix:@"p"])
|
||||
@@ -739,7 +739,7 @@ static void removeKeRangerRansomware()
|
||||
|
||||
[nc addObserver:self selector:@selector(updateForAutoSize) name:@"AutoSizeSettingChange" object:nil];
|
||||
|
||||
[nc addObserver:self selector:@selector(updateForExpandCollape) name:@"OutlineExpandCollapse" object:nil];
|
||||
[nc addObserver:self selector:@selector(updateForExpandCollapse) name:@"OutlineExpandCollapse" object:nil];
|
||||
|
||||
[nc addObserver:self.fWindow selector:@selector(makeKeyWindow) name:@"MakeWindowKey" object:nil];
|
||||
|
||||
@@ -5309,7 +5309,7 @@ static void removeKeRangerRansomware()
|
||||
return contentMinHeight;
|
||||
}
|
||||
|
||||
- (void)updateForExpandCollape
|
||||
- (void)updateForExpandCollapse
|
||||
{
|
||||
[self setWindowSizeToFit];
|
||||
[self setBottomCountText:YES];
|
||||
|
||||
Reference in New Issue
Block a user