diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2022-01-13 10:58:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 10:58:46 +0800 |
commit | eaf09a53687844603dfd1bd3b88ed44d07f8e094 (patch) | |
tree | ab044ec30483cde5ae21402c8d7b316195c555ea /build | |
parent | 17b2079f3e06b95ab1ad752ed1218795538a1606 (diff) | |
download | gitea-eaf09a53687844603dfd1bd3b88ed44d07f8e094.tar.gz gitea-eaf09a53687844603dfd1bd3b88ed44d07f8e094.zip |
Fix documents for development and bug report (#18249)
Diffstat (limited to 'build')
-rw-r--r-- | build/code-batch-process.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/code-batch-process.go b/build/code-batch-process.go index fdc5d99b97..1fd236abd5 100644 --- a/build/code-batch-process.go +++ b/build/code-batch-process.go @@ -21,9 +21,9 @@ import ( ) // Windows has a limitation for command line arguments, the size can not exceed 32KB. -// So we have to feed the files to some tools (like gofmt/misspell`) batch by batch +// So we have to feed the files to some tools (like gofmt/misspell) batch by batch -// We also introduce a `gitea-fmt` command, it does better import formatting than gofmt/goimports +// We also introduce a `gitea-fmt` command, it does better import formatting than gofmt/goimports. `gitea-fmt` calls `gofmt` internally. var optionLogVerbose bool |