diff options
author | Michael Muré <batolettre@gmail.com> | 2021-03-07 21:46:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-07 21:46:55 +0100 |
commit | 2a21b02af157275e20c4ce6d308b45f9a3d7ebaf (patch) | |
tree | e8706dfe1679dd2dcb4524ef0473a6d0fa4f4227 /repository | |
parent | 87bc42fb4695872b82cfa9a922d423df7ff21132 (diff) | |
parent | 3a819525d7811dcfb01d928af0e243de4388c456 (diff) | |
download | git-bug-2a21b02af157275e20c4ce6d308b45f9a3d7ebaf.tar.gz |
Merge pull request #593 from vmiklos/webui-query
webui: allow specifying the initial query
Diffstat (limited to 'repository')
-rw-r--r-- | repository/repo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repository/repo.go b/repository/repo.go index eb9296d4..a1dc129e 100644 --- a/repository/repo.go +++ b/repository/repo.go @@ -11,7 +11,7 @@ import ( ) var ( - // ErrNotARepo is the error returned when the git repo root wan't be found + // ErrNotARepo is the error returned when the git repo root can't be found ErrNotARepo = errors.New("not a git repository") // ErrClockNotExist is the error returned when a clock can't be found ErrClockNotExist = errors.New("clock doesn't exist") |