From 1a86570d80ad67e1512a547818db8f9d834326e9 Mon Sep 17 00:00:00 2001 From: Ian Beck Date: Tue, 26 Jan 2016 14:16:15 -0800 Subject: [PATCH] Added missing nullable keyword to [GTIndex entryWithPath:path] convenience method --- ObjectiveGit/GTIndex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ObjectiveGit/GTIndex.h b/ObjectiveGit/GTIndex.h index 35bdaefae..c419c4e7c 100644 --- a/ObjectiveGit/GTIndex.h +++ b/ObjectiveGit/GTIndex.h @@ -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. ///