diff options
author | Gusted | 2022-01-22 21:59:34 +0000 |
---|---|---|
committer | GitHub | 2022-01-22 21:59:34 +0000 |
commit | 1ddfa596c8d9acb4fa5c04ed25df374b6e51c4b9 (patch) | |
tree | a9784ccd9d80d50e339fcd8ee65a6ff87f111c3f /CONTRIBUTING.md | |
parent | a82fd98d5368a75cbcf6b74c12f58f3f81e66662 (diff) |
Make gitea, gitea-vet future-proof (#18361)
* Make gitea, gitea-vet future-proof
- Ref: https://gitea.com/gitea/gitea-vet/pulls/18
* Correct order
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 624896bba..b9de6b699 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -141,8 +141,8 @@ For imports you should use the following format (_without_ the comments) ```go import ( // stdlib - "encoding/json" "fmt" + "math" // local packages "code.gitea.io/gitea/models" |