Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Indentation and commenting fixes
Fixed indentation on one of the lines (was a tad off);
Removed references to nilability as nullable keyword indicates that. Didn't touch other functions I didn't author.
  • Loading branch information
slavikus committed Aug 13, 2015
commit 9011caf4c10b0c5270e8b5446a5e3bcd29f63987
6 changes: 3 additions & 3 deletions ObjectiveGit/GTCredential.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ NS_ASSUME_NONNULL_BEGIN

/// Create a credential object from a SSH keyfile data string
///
/// userName - The username to authenticate as. Must not be nil.
/// userName - The username to authenticate as.
/// publicKeyString - The string containing the public key for that user.
/// Can be omitted to reconstruct the public key from the private key.
/// privateKeyString - The URL to the private key for that user. Must not be nil.
/// Can be omitted to reconstruct the public key from the private key.
/// privateKeyString - The URL to the private key for that user.
/// passphrase - The passPhrase for the private key. Optional if the private key has no password.
/// error - If not NULL, set to any errors that occur.
///
Expand Down