diff options
author | Jacob Hrbek <kreyren@fsfe.org> | 2021-02-18 14:47:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 22:47:23 +0800 |
commit | 867f4c557dcd499f85056134453b755d62d706eb (patch) | |
tree | f793ccb3419922463a390f0c4cc281f35d12dae3 /routers | |
parent | c9a04cfdc8cf499651d69a6a5f2f2f0b47bc34ad (diff) | |
download | gitea-867f4c557dcd499f85056134453b755d62d706eb.tar.gz gitea-867f4c557dcd499f85056134453b755d62d706eb.zip |
routers/routes/web: Fix typo in comment (#14729)
Diffstat (limited to 'routers')
-rw-r--r-- | routers/routes/web.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/routes/web.go b/routers/routes/web.go index a6af64f874..b3edd8f713 100644 --- a/routers/routes/web.go +++ b/routers/routes/web.go @@ -708,7 +708,7 @@ func RegisterRoutes(m *web.Route) { m.Get("/choose", context.RepoRef(), repo.NewIssueChooseTemplate) }) }, context.RepoMustNotBeArchived(), reqRepoIssueReader) - // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest. + // FIXME: should use different URLs but mostly same logic for comments of issue and pull request. // So they can apply their own enable/disable logic on routers. m.Group("/issues", func() { m.Group("/{index}", func() { |