File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -393,15 +393,15 @@ var (
393
393
ErrMissingAuthor = errors .New ("author field is required" )
394
394
)
395
395
396
- // AddOptions describes how a add operation should be performed
396
+ // AddOptions describes how an ` add` operation should be performed
397
397
type AddOptions struct {
398
398
// All equivalent to `git add -A`, update the index not only where the
399
399
// working tree has a file matching `Path` but also where the index already
400
400
// has an entry. This adds, modifies, and removes index entries to match the
401
401
// working tree. If no `Path` nor `Glob` is given when `All` option is
402
402
// used, all files in the entire working tree are updated.
403
403
All bool
404
- // Path is the exact filepath to a the file or directory to be added.
404
+ // Path is the exact filepath to the file or directory to be added.
405
405
Path string
406
406
// Glob adds all paths, matching pattern, to the index. If pattern matches a
407
407
// directory path, all directory contents are added to the index recursively.
You can’t perform that action at this time.
0 commit comments