Skip to content

Commit

Permalink
Added missing nullable keyword to [GTIndex entryWithPath:path] conven…
Browse files Browse the repository at this point in the history
…ience method
  • Loading branch information
onecrayon committed Jan 26, 2016
1 parent 37b35c2 commit 1a86570
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ObjectiveGit/GTIndex.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ NS_ASSUME_NONNULL_BEGIN
/// Returns a new GTIndexEntry, or nil if an error occurred.
- (nullable GTIndexEntry *)entryAtIndex:(NSUInteger)index;

/// Get the entry with the given path.
- (GTIndexEntry *)entryWithPath:(NSString *)path;
/// Get the entry with the given path, or nil if an error occurred.
- (nullable GTIndexEntry *)entryWithPath:(NSString *)path;

/// Get the entry with the given name.
///
Expand Down

0 comments on commit 1a86570

Please sign in to comment.