From 5409475851a826fca31e1f368e9ab834445c9ccb Mon Sep 17 00:00:00 2001 From: Dustin Oprea Date: Tue, 13 Nov 2018 01:58:33 -0500 Subject: [PATCH] Fixed wording in comment. --- exif.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exif.go b/exif.go index afbabd7..a5efd06 100644 --- a/exif.go +++ b/exif.go @@ -59,9 +59,9 @@ var ( ErrExifHeaderError = errors.New("exif header error") ) -// SearchAndExtractExif returns a slice from the beginning of the EXIF data the +// SearchAndExtractExif returns a slice from the beginning of the EXIF data to // end of the file (it's not practical to try and calculate where the data -// actually ends). +// actually ends; it needs to be formally parsed). func SearchAndExtractExif(data []byte) (rawExif []byte, err error) { defer func() { if state := recover(); state != nil {