Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ravicious authored and github-actions committed Jul 29, 2024
1 parent 4600a22 commit 2907446
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/vnet/daemon/common_darwin.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extern const char* const VNEErrorDomain;
// It won't accept a new one during its lifetime, instead it's expected to stop, after
// which the client might spawn a new instance of the daemon.
extern const int VNEAlreadyRunningError;
// VNEMissingCodeSigningInformation indicates that either the identifier or the team identifier are missing.
// VNEMissingCodeSigningIdentifiersError indicates that either the identifier or the team identifier are missing.
// This can happen if the binary is unsigned, see the docs for SecCodeCopySigningInformation.
// https://developer.apple.com/documentation/security/1395809-seccodecopysigninginformation?language=objc
extern const int VNEMissingCodeSigningIdentifiersError;
Expand Down
2 changes: 1 addition & 1 deletion lib/vnet/daemon/common_darwin.m
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ bool getCodeSigningRequirement(NSString **outRequirement, NSError **outError) {
}

// Transfer ownership of cfCodeSignInfo to Obj-C, which means we don't have to CFRelease it manually.
// We can tranfser the ownership of cfCodeSignInfo because we own it (we got it from a function
// We can transfer the ownership of cfCodeSignInfo because we own it (we got it from a function
// with "Copy" in its name).
// https://developer.apple.com/documentation/foundation/1587932-cfbridgingrelease
NSDictionary *codeSignInfo = (NSDictionary *)CFBridgingRelease(cfCodeSignInfo);
Expand Down

0 comments on commit 2907446

Please sign in to comment.