diff options
| author | lhchavez <[email protected]> | 2020-02-27 21:16:46 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-02-27 21:16:46 -0800 |
| commit | 30de4b2e26a2eb7742445962e3038052c5376bfa (patch) | |
| tree | bf86166478f00d558bc6e7ebaf88e3b8162375d4 | |
| parent | 93c4c5b30a73a587efd2f5bc1f33d0ef8cec6950 (diff) | |
| parent | 0505eef78da720e7d528d1bb5139296270b6f746 (diff) | |
Merge pull request #542 from slyphon/fix-error-name
Resolves issue #541 - typo in error code 'ErrAmbigious'
| -rw-r--r-- | git.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -61,6 +61,8 @@ const ( // Object exists preventing operation ErrExists ErrorCode = C.GIT_EEXISTS // More than one object matches + ErrAmbiguous ErrorCode = C.GIT_EAMBIGUOUS + // (backwards compatibility misspelling) ErrAmbigious ErrorCode = C.GIT_EAMBIGUOUS // Output buffer too short to hold data ErrBuffs ErrorCode = C.GIT_EBUFS |
